@@ -6840,9 +6849,20 @@ export function App({ store, initialStatusMessage }: AppProps) {
{runtimeScene.spawn.source === "playerStart"
? "Player Start"
+ : runtimeScene.spawn.source === "sceneEntry"
+ ? "Scene Entry"
: "Fallback"}
Pointer Lock
@@ -6912,6 +6932,8 @@ export function App({ store, initialStatusMessage }: AppProps) {
Spawn:{" "}
{runtimeScene.spawn.source === "playerStart"
? "Player Start"
+ : runtimeScene.spawn.source === "sceneEntry"
+ ? "Scene Entry"
: "Fallback"}{" "}
at {formatRunnerFeetPosition(runtimeScene.spawn.position)}
@@ -6941,6 +6963,12 @@ export function App({ store, initialStatusMessage }: AppProps) {
{runtimeMessage === null ? null : (
{runtimeMessage}
)}
+ {runtimeGlobalState.lastSceneTransition === null ? null : (
+
+ Last transition: {runtimeGlobalState.lastSceneTransition.fromSceneName} to{" "}
+ {runtimeGlobalState.lastSceneTransition.toSceneName}
+
+ )}
{activeNavigationMode === "firstPerson" ? (
Spawn:{" "}
{runtimeScene.spawn.source === "playerStart"
? "Authored Player Start"
+ : runtimeScene.spawn.source === "sceneEntry"
+ ? "Scene Entry arrival"
: "Fallback runtime spawn"}