From 48661f8ee70a8bdee5b9ba27f2053fdca86ffd7a Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Tue, 14 Apr 2026 20:50:57 +0200 Subject: [PATCH] Add runtime clock state functions and constants --- src/app/App.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/app/App.tsx b/src/app/App.tsx index abb2ffea..6aeffa55 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -189,6 +189,7 @@ import { areProjectTimeSettingsEqual, cloneProjectTimeSettings, formatTimeOfDayHours, + HOURS_PER_DAY, normalizeTimeOfDayHours, type ProjectTimeSettings } from "../document/project-time-settings"; @@ -337,7 +338,11 @@ import { } from "../runtime-three/runtime-global-state"; import type { RuntimeSceneExitTransitionRequest } from "../runtime-three/runtime-host"; import { + advanceRuntimeClockState, areRuntimeClockStatesEqual, + createRuntimeClockState, + reconfigureRuntimeClockState, + resolveRuntimeTimeState, type RuntimeClockState } from "../runtime-three/runtime-project-time"; import { @@ -345,6 +350,7 @@ import { type RuntimeNavigationMode, type RuntimeSceneDefinition } from "../runtime-three/runtime-scene-build"; +import { applyResolvedControlStateToRuntimeScene } from "../runtime-three/runtime-scene-editor-simulation"; import { validateRuntimeSceneBuild } from "../runtime-three/runtime-scene-validation"; import { EditorAutosaveController } from "../serialization/editor-autosave"; import { Panel } from "../shared-ui/Panel";