auto-git:

[change] src/runtime-three/runtime-host.ts
This commit is contained in:
2026-04-22 17:01:12 +02:00
parent e700326b7a
commit 045efba7ce

View File

@@ -764,6 +764,16 @@ export class RuntimeHost {
this.activateDesiredNavigationController();
}
setActiveCameraRigOverride(entityId: string | null) {
this.activeCameraRigOverrideEntityId =
entityId === null ? null : entityId.trim() || null;
this.activeRuntimeCameraRig = null;
this.activeRuntimeCameraRigId = null;
this.cameraRigBlendState = null;
this.cameraRigLookYawRadians = 0;
this.cameraRigLookPitchRadians = 0;
}
setRuntimeMessageHandler(handler: ((message: string | null) => void) | null) {
this.runtimeMessageHandler = handler;
this.audioSystem.setRuntimeMessageHandler(handler);