From 465de798a08d6d60c3090fd02d45f917c7d9fdc8 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sat, 11 Apr 2026 04:16:20 +0200 Subject: [PATCH] Remove runtime message and add scene name to RunnerCanvas --- src/app/App.tsx | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/app/App.tsx b/src/app/App.tsx index 6ca89e37..50f25fdb 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -6184,11 +6184,7 @@ export function App({ store, initialStatusMessage }: AppProps) { const nextNavigationMode = preferredNavigationMode; setRuntimeScene(nextRuntimeScene); - setRuntimeMessage( - nextRuntimeScene.spawn.source === "playerStart" - ? "Running from the authored Player Start." - : "No Player Start is authored yet. Orbit Visitor opened first, with a fallback FPS spawn still available." - ); + setRuntimeMessage(null); setFirstPersonTelemetry(null); setRuntimeInteractionPrompt(null); setActiveNavigationMode(nextNavigationMode); @@ -6470,6 +6466,8 @@ export function App({ store, initialStatusMessage }: AppProps) {