사용하지 않는 로그 제거

This commit is contained in:
yonggyun 2025-06-25 17:12:57 +09:00
parent fbc9c88d59
commit 2c00c795f6

View File

@ -202,7 +202,6 @@ public void SetPush(Vector3 pushDirection, float pushPower)
public void OnMove(InputAction.CallbackContext context)
{
var movementInput = _moveAction.ReadValue<Vector2>();
Debug.Log($"Move{movementInput.x} {movementInput.y}]");
_inputDirection = new Vector3(movementInput.x, 0, movementInput.y).normalized;
}