From 5bd083923df2407fe9dad15f948559a3b0cee85d Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sat, 25 Apr 2026 03:06:18 +0200 Subject: [PATCH] auto-git: [change] src/runtime-three/runtime-host.ts --- src/runtime-three/runtime-host.ts | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/runtime-three/runtime-host.ts b/src/runtime-three/runtime-host.ts index 2bb2520f..20080727 100644 --- a/src/runtime-three/runtime-host.ts +++ b/src/runtime-three/runtime-host.ts @@ -4172,15 +4172,13 @@ export class RuntimeHost { this.previousFrameTime = now; this.updatePauseInputState(); const simulationDt = this.isRuntimePaused() ? 0 : dt; + const cameraDt = dt; const previousCameraPose = this.captureCurrentCameraPose(); this.activeController?.update(simulationDt); - const activeCameraRig = this.applyActiveCameraRig( - simulationDt, - previousCameraPose - ); + const activeCameraRig = this.applyActiveCameraRig(cameraDt, previousCameraPose); - if (activeCameraRig === null) { + if (!this.isActiveExternalCameraSource() && activeCameraRig === null) { this.applyPlayerCameraEffects(simulationDt); } else { this.resetPlayerCameraEffects();