From bc0f7617d457398777d9315ed8c07df7ba6708e7 Mon Sep 17 00:00:00 2001 From: En Yi Date: Sun, 13 Apr 2025 20:30:36 +0800 Subject: [PATCH] Slow down water filling rate --- scenes/water_flow.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scenes/water_flow.c b/scenes/water_flow.c index b29cd2c..07442c6 100644 --- a/scenes/water_flow.c +++ b/scenes/water_flow.c @@ -289,7 +289,7 @@ void update_water_runner_system(Scene_t* scene) break; case SCANLINE_FILL: { - const float FILL_RATE = 1.0f/24; + const float FILL_RATE = 1.0f/20; p_crunner->fractional += scene->delta_time; if (p_crunner->fractional < FILL_RATE) break;