diff --git a/src/composables/useGameEngine.ts b/src/composables/useGameEngine.ts index b0bff7d..8c24773 100644 --- a/src/composables/useGameEngine.ts +++ b/src/composables/useGameEngine.ts @@ -132,6 +132,11 @@ export function useGameEngine(videoEls: () => [HTMLVideoElement | null, HTMLVide scene.subtitles[k] = resolveAsset(base, scene.subtitles[k]) } } + if (scene.streamingUrl) { + for (const k of Object.keys(scene.streamingUrl)) { + scene.streamingUrl[k] = resolveAsset(base, scene.streamingUrl[k]) + } + } } if (data.endings) { for (const e of data.endings) {