From 8ab03be17354070b4bab21c594bc5a9adf839f50 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Mon, 13 Apr 2026 23:51:56 +0200 Subject: [PATCH] Add presence mode selection and time window inputs in App.tsx --- src/app/App.tsx | 91 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 91 insertions(+) diff --git a/src/app/App.tsx b/src/app/App.tsx index f30bd0b5..b5ebd9fd 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -14445,6 +14445,97 @@ export function App({ store, initialStatusMessage }: AppProps) { +
+
Presence
+ + + {npcPresenceModeDraft === "timeWindow" ? ( +
+ + +
+ ) : null} + +
+ {npcPresenceModeDraft === "always" + ? "Always keeps this NPC active in the runner." + : "Time windows use project-global in-game hours and can cross midnight."} +
+
+
Facing