Added Dialogic and a test dialog

This commit is contained in:
cblech
2024-10-28 12:06:03 +01:00
parent ea20332b4f
commit d231bb0773
683 changed files with 46264 additions and 1 deletions
@@ -0,0 +1,12 @@
extends Control
func _ready() -> void:
if DialogicUtil.autoload().has_subsystem('History'):
DialogicUtil.autoload().History.visited_event.connect(_on_visited_event)
DialogicUtil.autoload().History.unvisited_event.connect(_on_not_read_event)
func _on_visited_event() -> void:
show()
func _on_not_read_event() -> void:
hide()