25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

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