move_prompt.gd 293 B

1234567891011121314
  1. extends Control
  2. ## Show basic movements
  3. func remove_if_no_more_prompt():
  4. print(get_children().size(), " remaining children")
  5. if get_children().size() <= 1:
  6. # Only label remaining
  7. print("Destruction !")
  8. queue_free()
  9. func _on_child_exited_tree() -> void:
  10. remove_if_no_more_prompt()