From 1b0136220d3f247fc85605496979cf2bc3abf930 Mon Sep 17 00:00:00 2001 From: Sara Date: Sun, 31 Aug 2025 22:32:16 +0200 Subject: [PATCH] tweak: player movement stats --- modules/wave_survival/player_body.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/wave_survival/player_body.h b/modules/wave_survival/player_body.h index 84cd30df..a7f544d8 100644 --- a/modules/wave_survival/player_body.h +++ b/modules/wave_survival/player_body.h @@ -31,10 +31,10 @@ public: private: bool try_running{ false }; - float walk_speed{ 6.f }; - float run_speed{ 8.f }; + float walk_speed{ 4.f }; + float run_speed{ 6.f }; float acceleration{ 40.f }; - float jump_strength{ 4.f }; + float jump_strength{ 3.75f }; Vector2 movement_input{ 0, 0 }; float fov{ 1.f };