From a33b3d4ffc1defda5bdcd3348036ce48ef5b0085 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Thu, 27 Apr 2017 17:40:12 -0400 Subject: modernized ui --- src/particle.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/particle.cpp') diff --git a/src/particle.cpp b/src/particle.cpp index 02f3640..a546c0c 100644 --- a/src/particle.cpp +++ b/src/particle.cpp @@ -98,8 +98,6 @@ void ParticleSystem::update(entityx::EntityManager &en, entityx::EventManager &e (void)en; (void)ev; - auto& worldSystem = *game::engine.getSystem(); - for (unsigned int i = 0; i < parts.size(); i++) { auto& p = parts[i]; auto& vel = p.velocity; @@ -160,7 +158,7 @@ void ParticleSystem::update(entityx::EntityManager &en, entityx::EventManager &e p.location.y += vel.y * dt; // world collision - auto height = worldSystem.isAboveGround(p.location); + auto height = WorldSystem::isAboveGround(p.location); if (height != 0) { if (p.type == ParticleType::Drop || p.type == ParticleType::SmallPoof) p.location.y = height + 5, p.velocity.y = randGet() % 10 / 40.0f; -- cgit v1.2.3