|
@@ -92,10 +92,21 @@ func _next_id() -> int:
|
|
|
return next_id
|
|
|
|
|
|
|
|
|
+func _reset_id() -> void:
|
|
|
+ current_id = VOID_SLIDE_ID
|
|
|
+
|
|
|
+
|
|
|
func _unhandled_key_input(event: InputEvent):
|
|
|
- if event.is_action("ui_right") and event.is_pressed():
|
|
|
+ if !event.is_pressed():
|
|
|
+ return
|
|
|
+
|
|
|
+ if event.is_action("ui_right"):
|
|
|
get_viewport().set_input_as_handled()
|
|
|
go_fast_to_next_slide()
|
|
|
+ elif event.is_action("ui_cancel"):
|
|
|
+ get_viewport().set_input_as_handled()
|
|
|
+ _reset_id()
|
|
|
+ go_slowly_to_next_slide()
|
|
|
|
|
|
|
|
|
func _on_current_slide_finished():
|