diff --git a/src/runtime-three/runtime-host.ts b/src/runtime-three/runtime-host.ts index a3b7ddb5..c98e2cd8 100644 --- a/src/runtime-three/runtime-host.ts +++ b/src/runtime-three/runtime-host.ts @@ -327,6 +327,15 @@ export interface RuntimePauseState { source: "manual" | "control" | "mixed" | null; } +interface RuntimeCameraRigBlendState { + durationSeconds: number; + elapsedSeconds: number; + fromPosition: Vector3; + fromLookTarget: Vector3; + toPosition: Vector3; + toLookTarget: Vector3; +} + export class RuntimeHost { private readonly scene = new Scene(); private readonly worldBackgroundRenderer = new WorldBackgroundRenderer();