Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions js/physics.js
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
Loading