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") } ] },