From 2cfa8eedc3b18933ab622a5da66fde15093cb1a3 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sat, 11 Apr 2026 04:38:15 +0200 Subject: [PATCH] Add check for scene exit destination before creation --- src/app/App.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/app/App.tsx b/src/app/App.tsx index 30f63ce9..a4abf237 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -3417,6 +3417,11 @@ export function App({ store, initialStatusMessage }: AppProps) { kind: EntityKind, options: { audioAssetId?: string | null } = {} ) => { + if (kind === "sceneExit" && resolveDefaultSceneExitDestination() === null) { + setStatusMessage("Author a Scene Entry before placing a Scene Exit."); + return; + } + beginCreation( { kind: "create",