From b0f850f6b2fe6088071a39df0dcada02231b4a00 Mon Sep 17 00:00:00 2001 From: LeeJaeHyun Date: Wed, 11 Sep 2024 14:08:25 +0900 Subject: [PATCH] . --- Assets/02_Scripts/PlayerController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/02_Scripts/PlayerController.cs b/Assets/02_Scripts/PlayerController.cs index d0e47fc..ee32d63 100644 --- a/Assets/02_Scripts/PlayerController.cs +++ b/Assets/02_Scripts/PlayerController.cs @@ -14,7 +14,7 @@ public class PlayerController : MonoBehaviour void Update() { - h = Input.GetAxis("Horizontal"); + h = Input.GetAxis("Horizontal"); // 1차원 연속값 -1.0 ~ 0.0 ~ +1.0 Debug.Log("h=" + h); transform.Translate(Vector3.forward * 0.01f);