From 82109c19d11bbe63592458bfde1f28bd2d6547fd Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sat, 25 Apr 2026 17:33:27 +0200 Subject: [PATCH] Remove manual reset of look offsets when target look boundary is reached --- src/runtime-three/third-person-navigation-controller.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/runtime-three/third-person-navigation-controller.ts b/src/runtime-three/third-person-navigation-controller.ts index 49280709..657d68df 100644 --- a/src/runtime-three/third-person-navigation-controller.ts +++ b/src/runtime-three/third-person-navigation-controller.ts @@ -598,8 +598,6 @@ export class ThirdPersonNavigationController implements NavigationController { if (boundaryReached) { this.context?.handleRuntimeTargetLookBoundaryReached?.(); - this.targetLookOffsetYawRadians = 0; - this.targetLookOffsetPitchRadians = 0; } }