Fix projectile shots facing backward vertically

This commit is contained in:
Raxki 2024-10-27 15:52:07 -04:00
parent 8401e8646a
commit 27ed388501

View file

@ -12,7 +12,7 @@ signal collided_with_area(other: Area2D, power: int, direction: Vector2)
func _ready():
flip_h = sign(direction.x) < 0
flip_v = sign(direction.y) < 0
flip_v = sign(direction.y) > 0
if abs(direction.dot(Vector2.RIGHT)) == 0.0:
# Vertical
self.play(&"vertical")