diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-03-14 18:19:06 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-03-14 18:19:06 -0400 |
commit | ba651a82d585c181e9632fadba5bb4d683842d44 (patch) | |
tree | 8b2711866d497dfd471903c603e2f33bd4a41a5a /src/particle.cpp | |
parent | a7d7d7e687cde01ed2d2ec2adb6ee5bfff8bbddc (diff) |
better slash, scale fixes
Diffstat (limited to 'src/particle.cpp')
-rw-r--r-- | src/particle.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
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 |