示例#1
0
 void Jump()
 {
     if (hotkeys.IsJumpPress() && grounded && !blink.IsBlinking())
     {
         jumped = true;
         playerAnimator.TriggerJumpAnimation();
         playerAudio.PlayJumpAudio();
     }
 }