↧
Answer by NightLucididty
I would do something along those lines: void OnCollisionExit(Collision other) { if(other.CompareTag("platform") && !animation.IsPlaying("Lionjump")) { isGrounded = false;...
View ArticleAnswer by s-ta-c
The lion will already fall right? Then why would you need to check if it falls or not, it just falls if there is no contact. If your problem is about colliding, i would suggest using raycasts. Just...
View Article