diff --git a/src/app/App.tsx b/src/app/App.tsx index bc4b89e7..c6f28f65 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -6910,21 +6910,15 @@ export function App({ store, initialStatusMessage }: AppProps) {
Interaction
- {activeNavigationMode === "firstPerson" - ? runtimeInteractionPrompt === null - ? "No target" - : "Ready" - : "Not available"} + {runtimeInteractionPrompt === null ? "No target" : "Ready"}
- {activeNavigationMode === "firstPerson" - ? runtimeInteractionPrompt === null - ? "Aim at an authored Interactable or Scene Exit and click when a prompt appears." - : `Click "${runtimeInteractionPrompt.prompt}" within ${runtimeInteractionPrompt.range.toFixed(1)}m.` - : "Switch to First Person to use click interactions."} + {runtimeInteractionPrompt === null + ? "Aim at an authored Interactable or Scene Exit and click when a prompt appears." + : `Click "${runtimeInteractionPrompt.prompt}" within ${runtimeInteractionPrompt.range.toFixed(1)}m.`}
@@ -6937,7 +6931,7 @@ export function App({ store, initialStatusMessage }: AppProps) { {runtimeGlobalState.lastSceneTransition.toSceneName} )} - {activeNavigationMode === "firstPerson" ? ( + {
- ) : null} + }
diff --git a/src/runner-web/RunnerCanvas.tsx b/src/runner-web/RunnerCanvas.tsx index 65a0f442..56e30abd 100644 --- a/src/runner-web/RunnerCanvas.tsx +++ b/src/runner-web/RunnerCanvas.tsx @@ -225,9 +225,7 @@ export function RunnerCanvas({ {runnerReady && navigationMode === "firstPerson" ? (