Added progress & major dialog bugfix

This commit is contained in:
2020-05-16 13:22:42 -04:00
parent afde971c17
commit 7528cba7d7
33 changed files with 237 additions and 8 deletions

View File

@ -1,10 +1,13 @@
extends CanvasLayer
func is_in_dialog():
return in_dialog
return in_dialog or $Dialog.is_visible_in_tree()
var in_dialog = false
func current_dialog():
return $Dialog/Textbox/Body.text
func set_dialog(message, speaker=""):
$Dialog.show()
in_dialog = true