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

21 行
389 B

  1. extends Control
  2. class_name SpeechPanel
  3. export var text_path : NodePath
  4. var text : SpeechText
  5. export var choices_path : NodePath
  6. var choices : ChoicesBox
  7. func _enter_tree():
  8. Controller.speech_panel = self
  9. text = get_node(text_path)
  10. choices = get_node(choices_path)
  11. func _ready():
  12. Controller.speech_panel = self
  13. text = get_node(text_path)
  14. choices = get_node(choices_path)
  15. hide()