From acc84c167ddca35574db93a7ecbe5cdf647d344b Mon Sep 17 00:00:00 2001 From: LeeJaeHyun Date: Wed, 11 Sep 2024 14:18:23 +0900 Subject: [PATCH] . --- Assets/02_Scripts/PlayerController.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Assets/02_Scripts/PlayerController.cs b/Assets/02_Scripts/PlayerController.cs index cbc47b0..621f17d 100644 --- a/Assets/02_Scripts/PlayerController.cs +++ b/Assets/02_Scripts/PlayerController.cs @@ -16,9 +16,10 @@ public class PlayerController : MonoBehaviour { h = Input.GetAxis("Horizontal"); // 1차원 연속값 -1.0 ~ 0.0 ~ +1.0 v = Input.GetAxis("Vertical"); // -1.0f ~ 0.0f ~ +1.0f - Debug.Log("h=" + h + " v=" + v); + // Debug.Log("h=" + h + " v=" + v); + Debug.Log($"h={h} / v={v}"); - transform.Translate(Vector3.forward * 0.01f); + transform.Translate(Vector3.forward * v * 0.01f); } }