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/attack.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/attack.cpp') diff --git a/src/attack.cpp b/src/attack.cpp index 226fe2f..525b0c3 100644 --- a/src/attack.cpp +++ b/src/attack.cpp @@ -33,11 +33,12 @@ void AttackSystem::update(entityx::EntityManager& en, entityx::EventManager& ev, (void)e; if (e.has_component()) return; - vec2 eloc (pos.x + dim.width / 2, pos.y + dim.height / 2); - if (abs(eloc.x - a.pos.x) <= shortSlashLength) { + + if ((pos.x > a.pos.x && pos.x < a.pos.x + shortSlashLength) || + (pos.x + dim.width < a.pos.x && pos.x + dim.width > a.pos.x - shortSlashLength)) { h.health -= a.power; - game::engine.getSystem()->addMultiple(10, ParticleType::SmallBlast, - [&](){ return eloc; }, 500, 7); + game::engine.getSystem()->addMultiple(10, ParticleType::DownSlash, + [&](){ return vec2(pos.x + dim.width / 2, pos.y + dim.height / 2); }, 300, 7); } } ); -- cgit v1.2.3