void IState.Process()
 {
     _timer += Time.deltaTime;
     if ((!MyInputManager.instance.GetKey("Jump") && _timer <= maxTimeToMakeShortJump) || !allowLongJump)
     {
         _jump.SetShortJump();
     }
     PlayerAnimator.instance.SetSpeed(_normalMovent.currentVelocity);
 }