fix: Adjust player jump force for more precise movement

This commit is contained in:
Kacper Kostka 2025-04-05 18:13:58 +02:00 committed by Kacper Kostka (aider)
parent 8562c86986
commit afba547fce

View File

@ -13,7 +13,7 @@ class Player extends Entity {
// Movement properties
this.moveSpeed = 0.15;
this.jumpForce = -0.5;
this.jumpForce = -0.1;
this.gravity = 0.02;
this.maxVelocity = 0.5;
this.friction = 0.9;