From 72301ef4bd382c43a61be3a00c0adf581eaabf75 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sat, 11 Apr 2026 04:37:11 +0200 Subject: [PATCH] Add Scene Entry and Scene Exit options to App.tsx --- src/app/App.tsx | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/app/App.tsx b/src/app/App.tsx index 335eb684..088efe68 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -6597,6 +6597,12 @@ export function App({ store, initialStatusMessage }: AppProps) { testId: "add-menu-player-start", onSelect: () => beginEntityCreation("playerStart") }, + { + kind: "action", + label: "Scene Entry", + testId: "add-menu-scene-entry", + onSelect: () => beginEntityCreation("sceneEntry") + }, { kind: "action", label: "Sound Emitter", @@ -6623,6 +6629,12 @@ export function App({ store, initialStatusMessage }: AppProps) { label: "Interactable", testId: "add-menu-interactable", onSelect: () => beginEntityCreation("interactable") + }, + { + kind: "action", + label: "Scene Exit", + testId: "add-menu-scene-exit", + onSelect: () => beginEntityCreation("sceneExit") } ] },