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 {