diff options
author | metamuffin <metamuffin@disroot.org> | 2024-06-26 21:27:40 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-06-26 21:27:40 +0200 |
commit | e38a2ee78910edcec4425c07903e36fb5749ae3b (patch) | |
tree | 963b24ec9d73d98b46c1fff1bb6d10d043dc6285 /client/player | |
parent | 18e9409739ceefef970dd509709a1f7b0c1c15e4 (diff) | |
parent | cbe0201f67eaa751434786e23da3311761f5e776 (diff) | |
download | hurrycurry-e38a2ee78910edcec4425c07903e36fb5749ae3b.tar hurrycurry-e38a2ee78910edcec4425c07903e36fb5749ae3b.tar.bz2 hurrycurry-e38a2ee78910edcec4425c07903e36fb5749ae3b.tar.zst |
Merge branch 'master' of https://codeberg.org/metamuffin/undercooked
Diffstat (limited to 'client/player')
-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 |