update PLAYER_AIR_DAMPING value to 8

This commit is contained in:
MihailRis 2024-11-26 12:56:31 +03:00
parent d29621d42f
commit 4b42369c31

View File

@ -21,7 +21,7 @@
constexpr float CROUCH_SPEED_MUL = 0.35f;
constexpr float RUN_SPEED_MUL = 1.5f;
constexpr float PLAYER_GROUND_DAMPING = 10.0f;
constexpr float PLAYER_AIR_DAMPING = 7.0f;
constexpr float PLAYER_AIR_DAMPING = 8.0f;
constexpr float FLIGHT_SPEED_MUL = 4.0f;
constexpr float CHEAT_SPEED_MUL = 5.0f;
constexpr float JUMP_FORCE = 8.0f;