reverse stun animation

This commit is contained in:
Evan Pratten 2021-04-24 18:58:20 -04:00
parent 54ff1c7931
commit f9957f57ea

View File

@ -179,12 +179,12 @@ impl Player {
self.attacking_timer = (self.attacking_timer - dt).max(0.0); self.attacking_timer = (self.attacking_timer - dt).max(0.0);
// Render attack AOE // Render attack AOE
if animation_progression <= 0.5 { if animation_progression >= 0.5 {
context_2d.draw_circle_lines( context_2d.draw_circle_lines(
self.position.x as i32, self.position.x as i32,
self.position.y as i32, self.position.y as i32,
self.inventory.stun_gun.as_ref().unwrap().range * aoe_ring, self.inventory.stun_gun.as_ref().unwrap().range * aoe_ring,
TRANSLUCENT_WHITE_64, TRANSLUCENT_WHITE_64.fade(aoe_ring),
); );
} else { } else {
context_2d.draw_circle_lines( context_2d.draw_circle_lines(