Browse Source

:wrench: Dump godot slideshow plugin to v1.2.1-godot4.4

DricomDragon 1 week ago
parent
commit
09d7007b54

+ 1 - 0
godot/addons/slide_show/plugin.gd.uid

@@ -0,0 +1 @@
+uid://bge7eiulillf

+ 1 - 0
godot/addons/slide_show/projector/focus/Focus.gd.uid

@@ -0,0 +1 @@
+uid://cj85fm8sf6vjj

+ 2 - 2
godot/addons/slide_show/projector/show/Show.gd

@@ -8,8 +8,8 @@ signal end_reached
 const VOID_SLIDE_ID := -1
 
 @export_group("Slide management")
-@export var start_slide := 0
-@export var hide_slides := false
+@export var start_slide := 0 ## Id of the slide focused at startup
+@export var hide_slides := false ## Hide every slide at startup (except the ones with always_visible enabled)
 
 @export_group("Input setup", "action_")
 @export var action_finish_slide := "ui_accept"

+ 1 - 0
godot/addons/slide_show/projector/show/Show.gd.uid

@@ -0,0 +1 @@
+uid://c02k4gjioxope

+ 21 - 0
godot/addons/slide_show/projector/slide/Slide.gd

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

+ 1 - 0
godot/addons/slide_show/projector/slide/Slide.gd.uid

@@ -0,0 +1 @@
+uid://dujtdgtfgki4c