|
@@ -17,23 +17,23 @@ var current_slide: Slide
|
|
|
@onready var slides: Array = get_children()
|
|
|
|
|
|
|
|
|
-func _ready():
|
|
|
+func _ready() -> void:
|
|
|
_enforce()
|
|
|
hide_every_slide()
|
|
|
go_slowly_to_next_slide()
|
|
|
|
|
|
|
|
|
-func go_slowly_to_next_slide():
|
|
|
+func go_slowly_to_next_slide() -> void:
|
|
|
_next_slide()
|
|
|
slow_move.emit()
|
|
|
|
|
|
|
|
|
-func go_fast_to_next_slide():
|
|
|
+func go_fast_to_next_slide() -> void:
|
|
|
_next_slide()
|
|
|
fast_move.emit()
|
|
|
|
|
|
|
|
|
-func _next_slide():
|
|
|
+func _next_slide() -> void:
|
|
|
_next_slide_at(_next_id())
|
|
|
|
|
|
|
|
@@ -56,13 +56,13 @@ func hide_every_slide() -> void:
|
|
|
slide.gently_hide()
|
|
|
|
|
|
|
|
|
-func _disconnect_current_slide():
|
|
|
+func _disconnect_current_slide() -> void:
|
|
|
if current_slide != null:
|
|
|
current_slide.remove_focus()
|
|
|
current_slide.finished.disconnect(_on_current_slide_finished)
|
|
|
|
|
|
|
|
|
-func _connect_current_slide():
|
|
|
+func _connect_current_slide() -> void:
|
|
|
current_slide.finished.connect(_on_current_slide_finished)
|
|
|
|
|
|
|
|
@@ -100,7 +100,7 @@ func _reset_id() -> void:
|
|
|
current_id = VOID_SLIDE_ID
|
|
|
|
|
|
|
|
|
-func _unhandled_key_input(event: InputEvent):
|
|
|
+func _unhandled_key_input(event: InputEvent) -> void:
|
|
|
if !event.is_pressed():
|
|
|
return
|
|
|
|
|
@@ -129,5 +129,5 @@ func _unhandled_input(event: InputEvent) -> void:
|
|
|
slow_move.emit()
|
|
|
|
|
|
|
|
|
-func _on_current_slide_finished():
|
|
|
+func _on_current_slide_finished() -> void:
|
|
|
go_slowly_to_next_slide()
|