From 3c91a1bc0de52f60f42788d10d18a73e6afadd71 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Tue, 24 Mar 2026 02:23:44 +0000 Subject: [PATCH] feat: increase default speed and boost mouth-open speed further MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - FORWARD_SPEED: 3.2 → 5.0 - MAX_SPEED: 8.5 → 12.0 - MOUTH_BOOST_MULTIPLIER: 1.8 → 2.5 Normal mode was too slow after the previous update. Open mouth boost is now even more rewarding. Co-Authored-By: bot_apk --- js/physics.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/physics.js b/js/physics.js index 1cbebf7..c8f1bd9 100644 --- a/js/physics.js +++ b/js/physics.js @@ -1,10 +1,10 @@ const GRAVITY = 9.8; const DIRECT_SENSITIVITY = 15.0; const RESPONSE_RATE = 6.0; -const FORWARD_SPEED = 3.2; +const FORWARD_SPEED = 5.0; const PITCH_SENSITIVITY = 3.0; -const MAX_SPEED = 8.5; -const MOUTH_BOOST_MULTIPLIER = 1.8; // Speed multiplier when mouth is open +const MAX_SPEED = 12.0; +const MOUTH_BOOST_MULTIPLIER = 2.5; // Speed multiplier when mouth is open const MAX_DT = 1 / 30; // Cap delta time to prevent physics explosions const COIN_COLLECT_RADIUS = 0.8; const TURTLE_COLLECT_RADIUS = 0.8;