浏览代码

:beetle: Fix pause processing

Function Array.all() is a boolean operation ; not designed to make a
for_each.
DricomDragon 1 周之前
父节点
当前提交
705c25b773
共有 2 个文件被更改,包括 28 次插入3 次删除
  1. 20 2
      godot/addons/slide_show/projector/slide/Slide.gd
  2. 8 1
      godot/example/slides/3Cool.tscn

+ 20 - 2
godot/addons/slide_show/projector/slide/Slide.gd

@@ -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)

+ 8 - 1
godot/example/slides/3Cool.tscn

@@ -7,7 +7,7 @@
 [node name="3Cool" type="Node2D"]
 script = ExtResource("1_t1lrj")
 
-[node name="Label" type="Label" parent="."]
+[node name="Title" type="Label" parent="."]
 offset_left = 88.0
 offset_top = 16.0
 offset_right = 1035.0
@@ -21,3 +21,10 @@ position = Vector2(563, 409)
 scale = Vector2(1.41875, 1.41875)
 texture = ExtResource("2_13txs")
 script = ExtResource("3_av8dm")
+
+[node name="Caption" type="Label" parent="RotatingLogo"]
+offset_left = -78.2379
+offset_top = 61.3216
+offset_right = 23.7621
+offset_bottom = 84.3216
+text = "Oh! Rotating!"