Fixed wrong isCrouching condition
This commit is contained in:
parent
f60ad2a712
commit
826419b545
@ -613,7 +613,7 @@ class ActorMovementController() : MovementController() {
|
|||||||
if (isGroundMovement) {
|
if (isGroundMovement) {
|
||||||
this.isRunning = isRunning && controlMove != null
|
this.isRunning = isRunning && controlMove != null
|
||||||
this.isWalking = !isRunning && controlMove != null
|
this.isWalking = !isRunning && controlMove != null
|
||||||
this.isCrouching = controlCrouch && controlMove != null
|
this.isCrouching = controlCrouch && controlMove == null
|
||||||
}
|
}
|
||||||
|
|
||||||
isFlying = controlFly != null
|
isFlying = controlFly != null
|
||||||
|
Loading…
Reference in New Issue
Block a user