From 7754e410fdbd73725bd38bb5d40e0dbd3a6c82d8 Mon Sep 17 00:00:00 2001 From: mid <> Date: Sat, 5 Jul 2025 14:06:07 +0300 Subject: [PATCH] EVEN MORE STABLIER --- src/game.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game.c b/src/game.c index bc3de84..64aacf5 100644 --- a/src/game.c +++ b/src/game.c @@ -986,8 +986,8 @@ void game_cleanup() { Game.phys = dWorldCreate(); dWorldSetGravity(Game.phys, 0, -15, 0); - dWorldSetCFM(Game.phys, 0.0002); - dWorldSetERP(Game.phys, 0.2); + dWorldSetCFM(Game.phys, 0.00002); + dWorldSetERP(Game.phys, 0.1); Game.space = dHashSpaceCreate(NULL);