// Update is called once per frame
 void FixedUpdate()
 {
     if (charState.IsInAnyJumpingState())
     {
         LimitJump();
         RotateAndMoveJump();
     }
 }