This commit is contained in:
윤기주_playm 2026-02-02 19:56:06 +09:00
parent 81b694b6af
commit 72971841d8

View File

@ -222,5 +222,5 @@ public class PlayerMovement : MonoBehaviour
public bool IsGrounded() => _controller.isGrounded; public bool IsGrounded() => _controller.isGrounded;
public bool IsDashing() => _isDashing; public bool IsDashing() => _isDashing;
public float GetCurrentSpeed() => _contzroller.velocity.magnitude; public float GetCurrentSpeed() => _controller.velocity.magnitude;
} }