您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

12 行
227 B

  1. extends Control
  2. export var text_path : NodePath
  3. onready var text := get_node(text_path)
  4. export var choices_path : NodePath
  5. onready var choices := get_node(choices_path)
  6. func _ready():
  7. Controller.speech_panel = self
  8. hide()