Slide.gd 280 B

12345678910111213
  1. class_name Slide
  2. extends Node2D
  3. # Display slide content
  4. # Called when the node enters the scene tree for the first time.
  5. func _ready():
  6. pass # Replace with function body.
  7. # Called every frame. 'delta' is the elapsed time since the previous frame.
  8. func _process(delta):
  9. pass