Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910111213141516171819202122
  1. extends Node
  2. @onready var narration = $Narration
  3. @onready var narration_timer = $Narration/MessageTimer
  4. @onready var score = $Score
  5. @onready var sps = $"Score Per Second"
  6. @onready var sps_timer = $"Score Per Second/SPS Timer"
  7. signal narration_end_introduction
  8. # Called when the node enters the scene tree for the first time.
  9. func _ready():
  10. pass
  11. # Called every frame. 'delta' is the elapsed time since the previous frame.
  12. func _process(delta):
  13. pass
  14. func _on_narration_end_introduction():
  15. narration_end_introduction.emit()