From 2c00c795f6bc5e2416af902bc621b27ea5203888 Mon Sep 17 00:00:00 2001 From: yonggyun Date: Wed, 25 Jun 2025 17:12:57 +0900 Subject: [PATCH] =?UTF-8?q?=EC=82=AC=EC=9A=A9=ED=95=98=EC=A7=80=20?= =?UTF-8?q?=EC=95=8A=EB=8A=94=20=EB=A1=9C=EA=B7=B8=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/Scirpts/CharacterController.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/Assets/Scirpts/CharacterController.cs b/Assets/Scirpts/CharacterController.cs index 286e05329..687d4968d 100644 --- a/Assets/Scirpts/CharacterController.cs +++ b/Assets/Scirpts/CharacterController.cs @@ -202,7 +202,6 @@ public void SetPush(Vector3 pushDirection, float pushPower) public void OnMove(InputAction.CallbackContext context) { var movementInput = _moveAction.ReadValue(); - Debug.Log($"Move{movementInput.x} {movementInput.y}]"); _inputDirection = new Vector3(movementInput.x, 0, movementInput.y).normalized; }