From 8a12820bdf51b6315f7c8a744b1f0e0132a43550 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 22 Apr 2026 17:02:19 +0200 Subject: [PATCH] auto-git: [change] src/runtime-three/runtime-host.ts --- src/runtime-three/runtime-host.ts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/runtime-three/runtime-host.ts b/src/runtime-three/runtime-host.ts index cf781198..af163a9c 100644 --- a/src/runtime-three/runtime-host.ts +++ b/src/runtime-three/runtime-host.ts @@ -3710,7 +3710,14 @@ export class RuntimeHost { const simulationDt = this.isRuntimePaused() ? 0 : dt; this.activeController?.update(simulationDt); - this.applyPlayerCameraEffects(simulationDt); + const activeCameraRig = this.applyActiveCameraRig(simulationDt); + + if (activeCameraRig === null) { + this.applyPlayerCameraEffects(simulationDt); + } else { + this.resetPlayerCameraEffects(); + } + this.audioSystem.setPlayerControllerAudioHooks( this.currentPlayerAudioHooks );