From 1ee202f58984a0e56cb368594fc062b91833e242 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 15 Apr 2026 09:46:55 +0200 Subject: [PATCH] Remove unused method startDialogue from RuntimeInteractionDispatcher --- src/runtime-three/runtime-interaction-system.ts | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/runtime-three/runtime-interaction-system.ts b/src/runtime-three/runtime-interaction-system.ts index b6d9ac7b..4fe3ac43 100644 --- a/src/runtime-three/runtime-interaction-system.ts +++ b/src/runtime-three/runtime-interaction-system.ts @@ -62,7 +62,6 @@ export interface RuntimeInteractionDispatcher { dialogueId: string | null, source?: RuntimeDialogueStartSource ): void; - startDialogue?(dialogueId: string, source?: RuntimeDialogueStartSource): void; dispatchControlEffect?(effect: ControlEffect, link: InteractionLink): void; } @@ -761,14 +760,6 @@ export class RuntimeInteractionSystem { trigger: link.trigger }); return; - case "startDialogue": - dispatcher.startDialogue?.(step.dialogueId, { - kind: "interactionLink", - sourceEntityId: link.sourceEntityId, - linkId: link.id, - trigger: link.trigger - }); - return; } } }