일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 길건너 친구들
- 팀 프로젝트
- 개발일지
- Photon Fusion
- 유니티 Json 데이터 연동
- 유니티
- HAPTIC
- meta xr
- 멀티플레이
- 유니티 UI
- OVR
- 개발
- 드래곤 플라이트
- VR
- 모작
- Oculus
- 오브젝트 풀링
- 팀프로젝트
- 포트폴리오
- 유니티 GUI
- 드래곤 플라이트 모작
- ChatGPT
- 앱 배포
- input system
- XR
- meta
- CGV
- 오큘러스
- 가상현실
- 연습
- Today
- Total
목록유니티 기초 (26)
EasyCastleUNITY
RouletteController using System.Collections; using System.Collections.Generic; using UnityEngine; public class RouletteController : MonoBehaviour { public float rotAngle = 0; public float dampingCoefficient = 0.96f; // Start is called before the first frame update void Start() { } // Update is called once per frame void Update() { //왼쪽 버튼을 눌렀다면 if(Input.GetMouseButton(0)) { Debug.Log("왼쪽 버튼 클릭")..
Swipe Car CarController using System.Collections; using System.Collections.Generic; using UnityEngine; public class CarController : MonoBehaviour { private float moveSpeed = 0.0f; float dampingCoefficient = 0.96f; //감쇠 계수 private Vector3 startPos; // down 했을 때 위치 private Vector3 endPos; //up 했을 때 위치 // Start is called before the first frame update void Start() { } // Update is called once per fr..