選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

messages.gd 531B

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()