diff options
Diffstat (limited to 'include/weather.hpp')
-rw-r--r-- | include/weather.hpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/weather.hpp b/include/weather.hpp index 3aac2e6..c348c15 100644 --- a/include/weather.hpp +++ b/include/weather.hpp @@ -52,6 +52,12 @@ public: } break; // TODO case Weather::Snowy: + if (newPartDelay++ == 4) { + newPartDelay = 0; + partSystem.add(vec2(offset.x - game::SCREEN_WIDTH / 2 + randGet() % game::SCREEN_WIDTH, + offset.y + game::SCREEN_HEIGHT / 2 + 100), + ParticleType::Confetti, 6000); + } break; // TODO default: break; |