From cf8af6c2ac9fa7eab7ddbd38b06af5587c5d9c53 Mon Sep 17 00:00:00 2001 From: Klemen Plestenjak Date: Tue, 13 Feb 2024 19:27:33 +0100 Subject: [PATCH] Lower push force even more --- game/systems/s_entity.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/systems/s_entity.c b/game/systems/s_entity.c index 0cc7db7..a872dac 100644 --- a/game/systems/s_entity.c +++ b/game/systems/s_entity.c @@ -217,7 +217,7 @@ void entityUpdate(ecs_iter_t *it) { } - const f32 force = stationary ? 4000 : 500; + const f32 force = stationary ? 4000 : 50; dir = Vector2Normalize(dir); dir = Vector2Scale(dir, force * dt); velocity[i] = Vector2Subtract(velocity[i], dir);