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 /test-client | |
parent | 8fe07c430c492bd33bea8b2cafff71af32f33b86 (diff) | |
download | hurrycurry-c1e3ea079c8e6679228a88f0da73deba67b9be94.tar hurrycurry-c1e3ea079c8e6679228a88f0da73deba67b9be94.tar.bz2 hurrycurry-c1e3ea079c8e6679228a88f0da73deba67b9be94.tar.zst |
Increase movement speed & adjust boost
Diffstat (limited to 'test-client')
-rw-r--r-- | test-client/movement.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test-client/movement.ts b/test-client/movement.ts index 933b6af5..fcb2e0ba 100644 --- a/test-client/movement.ts +++ b/test-client/movement.ts @@ -21,8 +21,8 @@ import { V2, normalize, length, sub_v2, lerp_exp_v2_mut } from "./util.ts"; export const PLAYER_SIZE = 0.4 export const PLAYER_FRICTION = 10 -export const PLAYER_SPEED = 40 -export const BOOST_FACTOR = 3 +export const PLAYER_SPEED = 55 +export const BOOST_FACTOR = 2.5 export const BOOST_DURATION = 0.3 export const BOOST_RESTORE = 0.5 |