일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Lv.3
- 양과 늑대
- Ainimation Blending
- Back Tracking
- Animation State Machine
- 프로그래머스
- 9375번
- 오브젝트 풀링
- dfs
- 플레이어 방향전환
- Lv2
- Algorithm
- pccp 기출문제 3번
- 2D슈팅게임
- Blend Type
- 유니티
- CSharp #자료구조
- pccp 기출문제 1번
- 충돌위험 찾기
- 미로 탈출 명령어
- pccp 기출문제 2번
- 백준 c++ 9375번
- dp 알고리즘
- heap tree
- 플레이어 이동
- 연속 펄스 부분 수열의 합
- Unity
- LayerMark
- C#
- Hp바
- Today
- Total
목록플레이어 이동 (2)
주녘공부일지
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..
1. 3D 플레이어 이동 구현 ( position ) using System.Collections; using System.Collections.Generic; using UnityEngine; public class PlayerController : MonoBehaviour { [SerializeField] float _speed = 10.0f; void Update() { if (Input.GetKey(KeyCode.W)) transform.position += new Vector3(0f, 0f, 1f) * Time.deltaTime * _speed; if (Input.GetKey(KeyCode.S)) transform.position -= new Vector3(0f, 0f, 1f) * Time.de..