We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 199af8e commit 80daed4Copy full SHA for 80daed4
1 file changed
Assets/_Scripts/Player/PlayerController.cs
@@ -114,6 +114,7 @@ private void HandleJump()
114
{
115
if(!_hasAnimator) return;
116
if(!_inputManager.Jump) return;
117
+ if(!_grounded) return;
118
_animator.SetTrigger(_jumpHash);
119
120
//Enable this if you want B-Hop
0 commit comments