Fix projectile shots facing backward vertically
This commit is contained in:
parent
8401e8646a
commit
27ed388501
1 changed files with 1 additions and 1 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue