diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-01-10 08:42:54 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-01-10 08:42:54 -0500 |
commit | bef28375cbaaa3f527b98b8c617fbfd5ca3a525a (patch) | |
tree | b1dbd24b17fd6d9bb26f4b915ec33d934e398947 /src/world.cpp | |
parent | 0aae714d4d894a4bfa9582c71ee8a1778260a047 (diff) |
particles are a lot better
Diffstat (limited to 'src/world.cpp')
-rw-r--r-- | src/world.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/world.cpp b/src/world.cpp index f54af3e..b6149e8 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -22,6 +22,7 @@ using namespace std::literals::chrono_literals; #include <components.hpp> #include <player.hpp> #include <weather.hpp> +#include <particle.hpp> // local library headers #include <tinyxml2.h> @@ -1156,7 +1157,11 @@ void WorldSystem::detect(entityx::TimeDelta dt) } else { loc.y = data[line].groundHeight - 0.001f * dt; vel.y = 0; - // TODO ground flag + if (!vel.grounded) { + vel.grounded = true; + game::engine.getSystem<ParticleSystem>()->addMultiple(20, ParticleType::SmallPoof, + [&](){ return vec2(loc.x + randGet() % static_cast<int>(dim.width * game::HLINE), loc.y);}, 500, 30); + } } } |