diff --git a/src/app/App.tsx b/src/app/App.tsx index db671017..f257c4fc 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -2463,6 +2463,15 @@ export function App({ store, initialStatusMessage }: AppProps) { : authoredNavigationMode === "firstPerson" ? "Ready for First Person" : "Ready for Third Person"; + const authoredEditorSimulationClock = createRuntimeClockState( + editorState.projectDocument.time + ); + const editorSimulationClock = + editorSimulationClockOverride ?? authoredEditorSimulationClock; + const editorSimulationTimeState = resolveRuntimeTimeState( + editorState.projectDocument.time, + editorSimulationClock + ); const advancedRendering = editorState.document.world.advancedRendering; const hoveredAsset = hoveredAssetId === null