๐Ÿงต#Hi I am experiencing an issue with

gilderko

So I think OrbitControls are blocked due to _activePointerEvents not emptying and controls not enabling.

gilderko

So after some testing this was the hotfix we did that does kinda work. Is there any update to this as this is a kinda fragile solution?

public update(): void {
    if ((DragControls._active as number) == 1 && this._previouslyActiveDragControls.length >= 0 && DragControls.CurrentlySelected.length === 0) {
      this._orbitControls._activePointerEvents = [];
      DragControls._active = 0;
    }
    this._previouslyActiveDragControls = DragControls.CurrentlySelected.map((dragControl) => dragControl);
  }