Focus.gd 512 B

12345678910111213141516171819202122232425
  1. class_name Focus
  2. extends Camera2D
  3. # Transition to next slide and focus current slide
  4. signal ended
  5. # Called when the node enters the scene tree for the first time.
  6. func _ready():
  7. pass # Replace with function body.
  8. # Called every frame. 'delta' is the elapsed time since the previous frame.
  9. func _process(delta):
  10. pass
  11. func focus_on(pos: Vector2, scale: float) -> void:
  12. set_position(pos)
  13. set_zoom(Vector2.ONE / scale)
  14. func _on_show_new_focus(pos: Vector2, scale: float) -> void:
  15. focus_on(pos, scale)