From 86259a1277556f33d2c7e4d95621aee900109dff Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Tue, 14 Apr 2026 01:57:28 +0200 Subject: [PATCH] Refactor runtime host imports and add schedule resolution functions --- src/runtime-three/runtime-host.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/runtime-three/runtime-host.ts b/src/runtime-three/runtime-host.ts index 4871f86b..061c804e 100644 --- a/src/runtime-three/runtime-host.ts +++ b/src/runtime-three/runtime-host.ts @@ -100,10 +100,6 @@ import { type RuntimeInteractionPrompt } from "./runtime-interaction-system"; import { RuntimeAudioSystem } from "./runtime-audio-system"; -import { - hasNpcPresenceActivityChanged, - resolveNpcPresenceActive -} from "./runtime-npc-presence"; import { advanceRuntimeClockState, areRuntimeClockStatesEqual, @@ -114,6 +110,10 @@ import { resolveRuntimeTimeState, type RuntimeClockState } from "./runtime-project-time"; +import { + applyRuntimeProjectScheduleToControlState, + resolveRuntimeProjectScheduleState +} from "./runtime-project-scheduler"; import { ThirdPersonNavigationController } from "./third-person-navigation-controller"; import { resolveUnderwaterFogState } from "./underwater-fog"; import { resolveWaterContact } from "./water-volume-utils";