From 600c330b68800eb7693c4613ede066f563b33f4b Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Tue, 14 Apr 2026 20:32:33 +0200 Subject: [PATCH] Add source field to RuntimeDialogueState --- src/runtime-three/runtime-host.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/runtime-three/runtime-host.ts b/src/runtime-three/runtime-host.ts index 19411d22..125e2ce8 100644 --- a/src/runtime-three/runtime-host.ts +++ b/src/runtime-three/runtime-host.ts @@ -100,6 +100,7 @@ import type { import { RapierCollisionWorld } from "./rapier-collision-world"; import { RuntimeInteractionSystem, + type RuntimeDialogueStartSource, type RuntimeInteractionDispatcher, type RuntimeInteractionPrompt } from "./runtime-interaction-system"; @@ -191,6 +192,7 @@ export interface RuntimeDialogueState { lineCount: number; speakerName: string | null; text: string; + source: RuntimeDialogueStartSource; } export class RuntimeHost {