25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 

12 satır
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()