Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

speech_panel.gd 389 B

1234567891011121314151617181920
  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()