🐛 fixed dialogic bugs and moved trash items out of the way

This commit is contained in:
2025-12-06 21:46:54 +01:00
parent 7bb523f9e7
commit e51e0a24d2
8 changed files with 48 additions and 2309 deletions
+13
View File
@@ -1,5 +1,18 @@
extends Node
class_name DialogicStarter
signal timelineStarted
signal timelineEnded
func _ready() -> void:
Dialogic.timeline_ended.connect(_on_timeline_ended)
Dialogic.timeline_started.connect(_start_dialog)
func open(timeline: String):
Dialogic.start(timeline)
func _start_dialog() -> void:
timelineStarted.emit()
func _on_timeline_ended() -> void:
timelineEnded.emit()