Jumping is underpowered??

This commit is contained in:
Tony Garnock-Jones 2023-02-13 17:39:24 +01:00
parent 7fba434a0d
commit a12209cdec
1 changed files with 1 additions and 1 deletions

View File

@ -299,7 +299,7 @@ export class RunningEngine {
jump() {
if (Math.abs(this.camera.cameraDirection.y) < 0.1) {
this.camera.cameraDirection.y += 1 * this.frameRateScale;
this.camera.cameraDirection.y += 2 * 9.81 * this.frameRateScale;
}
}