Slide.gd 479 B

12345678910111213141516171819202122
  1. @icon("res://common/graphics/icons/godot_icon_slide.svg")
  2. class_name Slide
  3. extends Node2D
  4. # Display slide content
  5. signal finished
  6. # Called when the node enters the scene tree for the first time.
  7. func _ready():
  8. pass # Replace with function body.
  9. # Called every frame. 'delta' is the elapsed time since the previous frame.
  10. func _process(delta):
  11. pass
  12. func _unhandled_key_input(event: InputEvent):
  13. if event.is_action("ui_accept") and event.is_pressed():
  14. finished.emit()