Bugfixes and Beauty

This commit is contained in:
2020-05-16 11:22:41 -04:00
parent 86637e395f
commit 497f251376
28 changed files with 222 additions and 8 deletions

View File

@ -21,6 +21,7 @@ func clear_choices():
$Dialog/Choices.get_child(i).queue_free()
func add_choice(speaker : Node, choice_id : int, choice_text : String):
$Dialog/Choices.hide()
var button = Button.new()
button.text = choice_text
button.connect("button_down", speaker, "_on_choice", [choice_id])