From 7ea183d6772bacb9b6e257638e910275c97a9f20 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 15 Apr 2026 03:43:55 +0200 Subject: [PATCH] Add scene transition target options in App.tsx --- src/app/App.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/app/App.tsx b/src/app/App.tsx index 4725b6d0..cd44bc21 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -2020,6 +2020,12 @@ export function App({ store, initialStatusMessage }: AppProps) { const teleportTargetOptions = entityDisplayList.filter( ({ entity }) => entity.kind === "teleportTarget" ); + const sceneTransitionTargetOptions = sceneTargetOptions.flatMap((scene) => + (sceneEntryOptionsBySceneId[scene.id] ?? []).map(({ entity, label }) => ({ + targetKey: `${scene.id}::${entity.id}`, + label: `${scene.name} ยท ${label}` + })) + ); const soundEmitterOptions = entityDisplayList.filter( ({ entity }) => entity.kind === "soundEmitter" ) as Array<{