diff --git a/Assets/Scripts/PlayerController.cs b/Assets/Scripts/PlayerController.cs index 68c2d49..d1c78dc 100644 --- a/Assets/Scripts/PlayerController.cs +++ b/Assets/Scripts/PlayerController.cs @@ -113,6 +113,16 @@ public class PlayerController : MonoBehaviour jump = false; } + if(rb.velocity.magnitude != 0 && rb.velocity.normalized == this.downDirection.normalized) + { + // Debug.Log("Player is falling :)"); + this.isFalling = true; + } + else + { + this.isFalling = false; + } + if (saveDirection != Vector3.zero) { Vector3 axis;