Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Unity
- c++
- 프로그래머스
- 백준
- 17070번
- dfs
- 백준 c++ 2468번
- 플레이어 이동
- 백준 2870번
- 백준 17070번 c++
- 오브젝트 풀링
- 코딩테스트
- 2870번
- Lv2
- Algorithm
- 백준 1103번 c++
- 백준 1103번 게임
- 2468 c++
- 백준 c++ 2870번
- 백준 17070번
- 2870번 수학숙제 c++
- Lv.3
- 2870번 c++
- C#
- 유니티
- Beakjoon
- 2870번 수학숙제
- 코테
- 백준 1103번
- 수학숙제
Archives
- Today
- Total
목록rotation (1)
주녘공부일지
[Unity3D] Rotation (회전)
Rotation (회전) 월드 공간상에서의 트랜스폼의 회전을 나타냄 ( Quaternion으로 저장 ) Quaternion은 복잡한 수를 기반으로 하기에 직관적으로 이해하기 쉽지 않으므로, 회전에 사용한다고만 알아둠 1) transfrom.Rotate using System.Collections; using System.Collections.Generic; using UnityEngine; public class PlayerController : MonoBehaviour { float _yAngle = 0f; void Update() { transform.Rotate(new Vector3(0f, Time.deltaTime * 100f, 0)); // y축 방향으로 회전 _yAngle += Time.del..
GameDevelopment/[Unity] Class, Pattern
2022. 2. 21. 20:23