Add pauseTime to PlayerStartActionInputState in tests

This commit is contained in:
2026-04-14 22:41:17 +02:00
parent 14775f7550
commit 9b66cf7336

View File

@@ -33,7 +33,8 @@ const FORWARD_INPUT: PlayerStartActionInputState = {
moveRight: 0,
jump: 0,
sprint: 0,
crouch: 0
crouch: 0,
pauseTime: 0
};
function createVolumeState(overrides: {
@@ -801,4 +802,4 @@ describe("player-locomotion", () => {
expect(step?.verticalVelocity).toBeCloseTo(-DEFAULT_MOVEMENT.moveSpeed);
expect(step?.feetPosition.y).toBeCloseTo(0.05, 5);
});
});
});