Gravity fixed

This commit is contained in:
Mal 2024-10-20 15:08:42 +02:00
parent 99f75a03ae
commit 52123763d3
2 changed files with 3 additions and 2 deletions

View File

@ -98,7 +98,7 @@ export class Game
);
/* Handle falling */
this.mrCroc.position.y += this.mrCroc.fallSpeed;
this.mrCroc.position.y += this.mrCroc.fallSpeed * delta * 0.6;
this.mrCroc.fallSpeed += this.level.gravity * delta;
/* Handle ground collision */

View File

@ -62,4 +62,5 @@ export default class RetroAnimation extends RetroSprite
this.isPlaying = false;
}
}
}