diff --git a/src/app/App.tsx b/src/app/App.tsx index cc4a460a..5ce0a571 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -4903,6 +4903,26 @@ export function App({ store, initialStatusMessage }: AppProps) {
Grounded
{firstPersonTelemetry?.grounded ? "yes" : activeNavigationMode === "firstPerson" ? "no" : "n/a"}
+
+
Locomotion
+
+ {activeNavigationMode === "firstPerson" + ? firstPersonTelemetry?.locomotionState === "swimming" + ? "Swimming" + : firstPersonTelemetry?.locomotionState === "flying" + ? "Flying" + : "Grounded" + : "n/a"} +
+
+
+
Water Volume
+
{activeNavigationMode === "firstPerson" ? (firstPersonTelemetry?.inWaterVolume ? "inside" : "outside") : "n/a"}
+
+
+
Fog Volume
+
{activeNavigationMode === "firstPerson" ? (firstPersonTelemetry?.inFogVolume ? "inside" : "outside") : "n/a"}
+