add rain noise & add rain splashes (WIP)

This commit is contained in:
MihailRis
2025-02-26 02:24:16 +03:00
parent 8dfc948fe3
commit 7635fdf807
18 changed files with 118 additions and 16 deletions
+3 -1
View File
@@ -209,7 +209,9 @@ void LevelScreen::update(float delta) {
playerController->postUpdate(delta, !inputLocked, hud->isPause());
hud->update(hudVisible);
decorator->update(delta, *camera);
decorator->update(
hud->isPause() ? 0.0f : delta, *camera, worldRenderer->weather
);
}
void LevelScreen::draw(float delta) {