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
- Beakjoon
- Lv2
- Unity
- 2870번 수학숙제 c++
- dfs
- Lv.3
- 코딩테스트
- 플레이어 이동
- Algorithm
- 2870번
- C#
- 백준 1103번 게임
- 2468 c++
- 백준 c++ 2870번
- 오브젝트 풀링
- 프로그래머스
- 백준 17070번 c++
- 백준 c++ 2468번
- 백준 1103번 c++
- 백준 2870번
- 17070번
- 2870번 c++
- 유니티
- 백준
- c++
- 백준 1103번
- 2870번 수학숙제
- 수학숙제
- 백준 17070번
- 코테
Archives
- Today
- Total
목록Position (1)
주녘공부일지
[Unity3D] position (위치) // 플레이어 이동 예제
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..
GameDevelopment/[Unity] Class, Pattern
2022. 2. 21. 16:48