auto-git:

[change] src/runtime-three/player-locomotion.ts
This commit is contained in:
2026-04-25 04:29:59 +02:00
parent 697577d4ff
commit 0d176a0129

View File

@@ -502,7 +502,7 @@ export function stepPlayerLocomotion(
const canUseImmediateGrounding =
options.previousLocomotionState === undefined ||
options.previousLocomotionState.grounded ||
options.verticalVelocity <= VERTICAL_ASCENT_EPSILON;
Math.abs(options.verticalVelocity) <= VERTICAL_ASCENT_EPSILON;
const currentlyGrounded =
currentGroundProbe.grounded &&
!ascendingFromPreviousFrame &&