From f342e284d6c3ad9ef5b02455e1c740119a20d459 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 1 Apr 2026 04:41:29 +0200 Subject: [PATCH] Set nonPickable flag for radiusRing mesh in ViewportHost --- src/viewport-three/viewport-host.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/viewport-three/viewport-host.ts b/src/viewport-three/viewport-host.ts index 63116595..73b19c00 100644 --- a/src/viewport-three/viewport-host.ts +++ b/src/viewport-three/viewport-host.ts @@ -838,6 +838,7 @@ export class ViewportHost { }) ); radiusRing.rotation.x = Math.PI * 0.5; + radiusRing.userData.nonPickable = true; for (const mesh of [core, radiusRing]) { this.tagEntityMesh(mesh, entityId, "interactable", group);