diff --git a/Assets/02_Scripts/PlayerController.cs b/Assets/02_Scripts/PlayerController.cs index ee32d63..cbc47b0 100644 --- a/Assets/02_Scripts/PlayerController.cs +++ b/Assets/02_Scripts/PlayerController.cs @@ -15,7 +15,8 @@ public class PlayerController : MonoBehaviour void Update() { h = Input.GetAxis("Horizontal"); // 1차원 연속값 -1.0 ~ 0.0 ~ +1.0 - Debug.Log("h=" + h); + v = Input.GetAxis("Vertical"); // -1.0f ~ 0.0f ~ +1.0f + Debug.Log("h=" + h + " v=" + v); transform.Translate(Vector3.forward * 0.01f); }