diff --git a/src/app/App.tsx b/src/app/App.tsx index 2a8a619e..b6354abf 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -8189,6 +8189,15 @@ export function App({ store, initialStatusMessage }: AppProps) { testId: "add-menu-scene-entry", onSelect: () => beginEntityCreation("sceneEntry") }, + { + kind: "action", + label: "NPC", + testId: "add-menu-npc", + onSelect: () => + beginEntityCreation("npc", { + modelAssetId: modelAssetList[0]?.id ?? null + }) + }, { kind: "action", label: "Sound Emitter",