Translations:Sprinting/17/zh

From Minecraft Parkour Wiki
Revision as of 13:13, 9 April 2022 by Pjx1314 (talk | contribs) (Created page with "//LEGACY METHOD:玩家在之前的 tick 中没有向前移动,但现在移动了。必须在地面上。 if (!this.isSprinting() && this.onGround && !prevSneaking && !prevMovingForward && this.movementInput.moveForward >= f && isntHungry && !this.isUsingItem() && !this.isPotionActive(Potion.blindness)) { if (this.sprintToggleTimer <= 0 && !keyBindSprint.isKeyDown()) this.sprintToggleTimer = 7; //the timer is 7 ticks else...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

//LEGACY METHOD:玩家在之前的 tick 中没有向前移动,但现在移动了。必须在地面上。

   if (!this.isSprinting() && this.onGround && !prevSneaking && !prevMovingForward && this.movementInput.moveForward >= f && isntHungry && !this.isUsingItem() && !this.isPotionActive(Potion.blindness))
   {
       if (this.sprintToggleTimer <= 0 && !keyBindSprint.isKeyDown())
           this.sprintToggleTimer = 7; //the timer is 7 ticks
       else
           this.setSprinting(true);
       }
       
   //Activated when the player was moving forward on the previous tick
   if (!this.isSprinting() && this.movementInput.moveForward >= f && isntHungry && !this.isUsingItem() && !this.isPotionActive(Potion.blindness) && keyBindSprint.isKeyDown())
   {
       this.setSprinting(true);
   }