extends Control ## Show basic movements func remove_if_no_more_prompt(): print(get_children().size(), " remaining children") if get_children().size() <= 1: # Only label remaining print("Destruction !") queue_free() func _on_child_exited_tree() -> void: remove_if_no_more_prompt()