From 9c7dbd9a1e63bac87a13666ae99225a3422f78d0 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Tue, 31 Mar 2026 04:58:05 +0200 Subject: [PATCH] Add navigation mode buttons and update player start handling in App.tsx --- src/app/App.tsx | 86 ++++++++++++++----------------------------------- 1 file changed, 25 insertions(+), 61 deletions(-) diff --git a/src/app/App.tsx b/src/app/App.tsx index a1f607d0..192f5405 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -1071,6 +1071,23 @@ export function App({ store, initialStatusMessage }: AppProps) { +
+ + +
+
+
+ ) : (
{playerStartList.map((playerStart, index) => ( @@ -1593,66 +1617,6 @@ export function App({ store, initialStatusMessage }: AppProps) { )} - - -
-
-
Player Start
-
{primaryPlayerStart === null ? "Missing" : "Authored"}
-
-
-
Default Run Mode
-
{preferredNavigationMode === "firstPerson" ? "First Person" : "Orbit Visitor"}
-
-
- - {primaryPlayerStart === null ? ( -
First-person run needs an authored Player Start.
- ) : ( -
-
Authored Spawn
-
- {primaryPlayerStart.position.x}, {primaryPlayerStart.position.y}, {primaryPlayerStart.position.z} -
-
yaw {primaryPlayerStart.yawDegrees}°
-
- )} - - {primaryPlayerStart !== null ? null : ( -
- -
- )} - -
- - -
- -
- -
-