aboutsummaryrefslogtreecommitdiffstats
path: root/include/weather.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-01-09 09:20:14 -0500
committerClyne Sullivan <tullivan99@gmail.com>2017-01-09 09:20:14 -0500
commit9d7b4c9a40261b5b6b961f6ca6174fd23c40f6b8 (patch)
tree10df7ef782baa34a0770d61cc81752917aca3cee /include/weather.hpp
parenteb6f6d035f0b4324d881f5057639474095a02858 (diff)
independent particle colors
Diffstat (limited to 'include/weather.hpp')
-rw-r--r--include/weather.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/weather.hpp b/include/weather.hpp
index c348c15..f2f5fed 100644
--- a/include/weather.hpp
+++ b/include/weather.hpp
@@ -48,7 +48,7 @@ public:
newPartDelay = 0;
partSystem.add(vec2(offset.x - game::SCREEN_WIDTH / 2 + randGet() % game::SCREEN_WIDTH,
offset.y + game::SCREEN_HEIGHT / 2 + 100),
- ParticleType::Drop);
+ ParticleType::Drop, 3000, 3);
}
break; // TODO
case Weather::Snowy:
@@ -56,7 +56,7 @@ public:
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);
+ ParticleType::Confetti, 6000, 0);
}
break; // TODO
default: