Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

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