This commit is contained in:
2024-05-14 17:56:12 -04:00
parent 510f80e2fa
commit 4a090f0d3d
4 changed files with 55 additions and 4 deletions

View File

@ -52,7 +52,6 @@ func _on_body_entered(body: Node2D) -> void:
func _on_area_entered(area: Area2D) -> void:
if area.is_in_group("bullet"):
area.queue_free()
# TODO: Have some kind of (maybe) particle explosion happen when hit with bullet
$AnimationPlayer.play("explode")
func explode() -> void:

View File

@ -63,7 +63,6 @@ func warp() -> void:
$WarpCooldown.start()
func crash() -> void:
# TODO: Make some kind of crash animation or crashed sprite
crashed.emit()
$AnimationPlayer.play("crash")