You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

11 lines
195 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. hide()