Lots of little tweaks and fixes

This commit is contained in:
2026-06-12 20:26:00 -05:00
parent 7fc1a4645c
commit 3d01fcce86
32 changed files with 570 additions and 160 deletions
+3
View File
@@ -28,6 +28,7 @@ static func dialogueCallable(params:Dictionary) -> int:
else _TextboxGd.AdvancementMode.PLAYER
)
DialogueManager.dialogue_started.emit(resource)
var line:DialogueLine = await DialogueManager.get_next_dialogue_line(resource, title, extraStates)
while line != null:
var entity:Entity = OVERWORLD.getEntityByDialogueName(line.character)
@@ -48,6 +49,8 @@ static func dialogueCallable(params:Dictionary) -> int:
else:
line = await DialogueManager.get_next_dialogue_line(resource, line.next_id, extraStates)
DialogueManager.dialogue_ended.emit(resource)
if mode == DialogueMode.CONVERSATION:
UI.activeConversation = false