From cdab4d320bf7b0fae89c4f50f68c204537b7f272 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Mon, 13 Apr 2026 16:28:52 +0200 Subject: [PATCH] Add NPC option to entity creation menu --- src/app/App.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) 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",