Slow down water filling rate

main
En Yi 2025-04-13 20:30:36 +08:00
parent 7a4cf55c06
commit bc0f7617d4
1 changed files with 1 additions and 1 deletions

View File

@ -289,7 +289,7 @@ void update_water_runner_system(Scene_t* scene)
break; break;
case SCANLINE_FILL: case SCANLINE_FILL:
{ {
const float FILL_RATE = 1.0f/24; const float FILL_RATE = 1.0f/20;
p_crunner->fractional += scene->delta_time; p_crunner->fractional += scene->delta_time;
if (p_crunner->fractional < FILL_RATE) break; if (p_crunner->fractional < FILL_RATE) break;