My player cant double jump but he can fall of a platform and still jump.
My code is like this: [156571-anmærkning-2020-04-13-170211.png|156571]
Hope you can help me
My player cant double jump but he can fall of a platform and still jump.
My code is like this: [156571-anmærkning-2020-04-13-170211.png|156571]
Hope you can help me
Hey man! Pretty easy once you think about it.
If (other.gameObject.tag == “ground”)
{ isOnGround = true; }
Else {isOnGround = false;}