super_space_game/scripts/particle_group.gd

12 lines
137 B
GDScript3
Raw Permalink Normal View History

2025-12-05 21:50:38 +00:00
extends Node2D
func play():
2025-12-07 00:33:42 +00:00
var last = null
2025-12-05 21:50:38 +00:00
for n in get_children():
2025-12-07 00:33:42 +00:00
last = n
2025-12-05 21:50:38 +00:00
n.restart()
2025-12-07 00:33:42 +00:00
await last.finished
queue_free()