From ba651a82d585c181e9632fadba5bb4d683842d44 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 14 Mar 2017 18:19:06 -0400 Subject: better slash, scale fixes --- src/particle.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/particle.cpp') diff --git a/src/particle.cpp b/src/particle.cpp index 52d0b23..02f3640 100644 --- a/src/particle.cpp +++ b/src/particle.cpp @@ -140,13 +140,19 @@ void ParticleSystem::update(entityx::EntityManager &en, entityx::EventManager &e break; case ParticleType::SmallPoof: if (vel.x == 0) { - vel.y = 0.1f; vel.x = randGet() % 10 / 20.0f - 0.25f; + vel.y = 0.1f; } else { vel.x += (vel.x > 0) ? -0.001f : 0.001f; vel.y -= 0.0015f; } break; + case ParticleType::DownSlash: + if (vel.x == 0) { + vel.x = 0.2f * (randGet() % 16 - 8) / 10.0f; + vel.y = -vel.x; + } + break; } // really update movement -- cgit v1.2.3