Gilderko โ
๐งต#Hi I am experiencing an issue with
Needle Open in Discord
Gilderko โ
So I think OrbitControls are blocked due to _activePointerEvents not emptying and controls not enabling.
marcel ๐ต โ
Hello <@317634903959142401> we'll take a look, thanks for reporting
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);
}
marcel ๐ต โ
Hi <@317634903959142401> thanks for the update. We're working on a fix.