Focus.gd 309 B

12345678910111213
  1. class_name Focus
  2. extends Camera2D
  3. # Transition to next slide and focus current slide
  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