prompt_container.gd 632 B

1234567891011121314151617181920212223242526272829
  1. class_name PromptContainer
  2. extends Control
  3. ## Free itself when every prompt has been used
  4. var _nb_prompts: int
  5. func _ready() -> void:
  6. _nb_prompts = 0
  7. for child in get_children():
  8. if child is InputPrompt:
  9. child.pressed.connect(child.queue_free)
  10. if child is InputPrompt or child is PromptContainer:
  11. child.tree_exited.connect(_on_child_exited_tree)
  12. _nb_prompts += 1
  13. func remove_if_no_more_prompt():
  14. _nb_prompts -= 1
  15. print(_nb_prompts, " remaining prompts")
  16. if _nb_prompts <= 0:
  17. # Only label remaining
  18. print("Destruction !")
  19. queue_free()
  20. func _on_child_exited_tree() -> void:
  21. remove_if_no_more_prompt()