|
@@ -3,6 +3,9 @@ extends Control
|
|
|
## Free itself when every prompt has been used
|
|
|
|
|
|
|
|
|
+## If true, automatically frees itself when there are no more input prompts among children
|
|
|
+@export var remove_when_prompts_depleted := true
|
|
|
+
|
|
|
var _nb_prompts: int
|
|
|
|
|
|
|
|
@@ -35,10 +38,10 @@ func disable() -> void:
|
|
|
set_process_mode(Node.PROCESS_MODE_DISABLED)
|
|
|
|
|
|
|
|
|
-func remove_if_no_more_prompt():
|
|
|
+func remove_if_no_more_prompt() -> void:
|
|
|
_nb_prompts -= 1
|
|
|
print(_nb_prompts, " remaining prompts")
|
|
|
- if _nb_prompts <= 0:
|
|
|
+ if _nb_prompts <= 0 and remove_when_prompts_depleted:
|
|
|
# Only label remaining
|
|
|
print("Destruction !")
|
|
|
queue_free()
|