|
@@ -7,6 +7,10 @@ signal finished
|
|
|
|
|
|
@export var always_visible: bool = false
|
|
|
|
|
|
+@export_group("Processing management", "processing_")
|
|
|
+@export var processing_start_when_enabled := true ## Override processing when focused
|
|
|
+@export var processing_keep_when_disabled := false ## Enable to process at startup and keep processing after transitioning to another slide
|
|
|
+
|
|
|
var action_finish := "ui_accept"
|
|
|
var center_offset: Vector2
|
|
|
|
|
@@ -19,11 +23,18 @@ func _ready() -> void:
|
|
|
func disable() -> void:
|
|
|
set_process_unhandled_key_input(false)
|
|
|
|
|
|
+ if processing_keep_when_disabled:
|
|
|
+ return
|
|
|
+ get_children().all(disable_processing)
|
|
|
+
|
|
|
|
|
|
func enable() -> void:
|
|
|
set_visible(true)
|
|
|
set_process_unhandled_key_input(true)
|
|
|
|
|
|
+ if processing_start_when_enabled:
|
|
|
+ get_children().all(enable_processing)
|
|
|
+
|
|
|
|
|
|
func get_center() -> Vector2:
|
|
|
return get_position() + center_offset
|
|
@@ -50,3 +61,13 @@ 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) -> bool:
|
|
|
+ node.set_process_mode(Node.PROCESS_MODE_PAUSABLE)
|
|
|
+ return true # to make it work with Array.all()
|
|
|
+
|
|
|
+
|
|
|
+static func disable_processing(node: Node) -> bool:
|
|
|
+ node.set_process_mode(Node.PROCESS_MODE_DISABLED)
|
|
|
+ return true # to make it work with Array.all()
|