From afba547fce81911bf6d8c06a9ac5728f0679b676 Mon Sep 17 00:00:00 2001 From: Kacper Kostka Date: Sat, 5 Apr 2025 18:13:58 +0200 Subject: [PATCH] fix: Adjust player jump force for more precise movement --- js/entities/player.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/entities/player.js b/js/entities/player.js index c14d45f..09bea27 100644 --- a/js/entities/player.js +++ b/js/entities/player.js @@ -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;