diff options
author | tpart <tpart120@proton.me> | 2024-06-26 20:49:07 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2024-06-26 20:49:09 +0200 |
commit | c1e3ea079c8e6679228a88f0da73deba67b9be94 (patch) | |
tree | 1a60046781f878da9b3b80ac7f98c8d4b3d66f35 /client | |
parent | 8fe07c430c492bd33bea8b2cafff71af32f33b86 (diff) | |
download | hurrycurry-c1e3ea079c8e6679228a88f0da73deba67b9be94.tar hurrycurry-c1e3ea079c8e6679228a88f0da73deba67b9be94.tar.bz2 hurrycurry-c1e3ea079c8e6679228a88f0da73deba67b9be94.tar.zst |
Increase movement speed & adjust boost
Diffstat (limited to 'client')
-rw-r--r-- | client/player/controllable_player.gd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/player/controllable_player.gd b/client/player/controllable_player.gd index a2321fef..a677fdb3 100644 --- a/client/player/controllable_player.gd +++ b/client/player/controllable_player.gd @@ -18,8 +18,8 @@ class_name ControllablePlayer extends Player const PLAYER_FRICTION = 10 -const PLAYER_SPEED = 40 -const BOOST_FACTOR = 3 +const PLAYER_SPEED = 55 +const BOOST_FACTOR = 2.5 const BOOST_DURATION = 0.3 const BOOST_RESTORE = 0.5 |