|
@@ -25,7 +25,7 @@ func disable() -> void:
|
|
|
|
|
|
if processing_keep_when_disabled:
|
|
|
return
|
|
|
- set_process(false)
|
|
|
+ for_each(every_children(), disable_processing)
|
|
|
|
|
|
|
|
|
func enable() -> void:
|
|
@@ -33,7 +33,7 @@ func enable() -> void:
|
|
|
set_process_unhandled_key_input(true)
|
|
|
|
|
|
if processing_start_when_enabled:
|
|
|
- set_process(true)
|
|
|
+ for_each(every_children(), enable_processing)
|
|
|
|
|
|
|
|
|
func get_center() -> Vector2:
|
|
@@ -51,6 +51,11 @@ func set_action_finish(action_name: String) -> void:
|
|
|
action_finish = action_name
|
|
|
|
|
|
|
|
|
+## Return every children recursively
|
|
|
+func every_children() -> Array[Node]:
|
|
|
+ return find_children("*", "", true)
|
|
|
+
|
|
|
+
|
|
|
func _unhandled_key_input(event: InputEvent) -> void:
|
|
|
if event.is_action(action_finish) and event.is_pressed():
|
|
|
finished.emit()
|
|
@@ -61,3 +66,16 @@ func _compute_center_offset() -> Vector2:
|
|
|
var w: float = ProjectSettings.get("display/window/size/viewport_width")
|
|
|
var h: float = ProjectSettings.get("display/window/size/viewport_height")
|
|
|
return Vector2(w * scale.x / 2, h * scale.y / 2)
|
|
|
+
|
|
|
+
|
|
|
+static func enable_processing(node: Node) -> void:
|
|
|
+ node.set_process(true)
|
|
|
+
|
|
|
+
|
|
|
+static func disable_processing(node: Node) -> void:
|
|
|
+ node.set_process(false)
|
|
|
+
|
|
|
+
|
|
|
+static func for_each(array: Array, todo: Callable) -> void:
|
|
|
+ for item in array:
|
|
|
+ todo.call(item)
|