Add Scene Entry and Scene Exit options to App.tsx
This commit is contained in:
@@ -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")
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user