From 6db9476404f988434a6382f5bcc1d125c380a0d6 Mon Sep 17 00:00:00 2001 From: Snorre Date: Sat, 5 Apr 2025 17:33:40 +0200 Subject: [PATCH] grab radius scales with size --- scripts/XRHand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/XRHand.cs b/scripts/XRHand.cs index 3d80bb5..7d957ad 100644 --- a/scripts/XRHand.cs +++ b/scripts/XRHand.cs @@ -17,7 +17,7 @@ public partial class XRHand : XRController3D { var query = new PhysicsShapeQueryParameters3D(); var sphere = new SphereShape3D(); - sphere.Radius = 0.1f; + sphere.Radius = 0.1f * Scale.X; query.Shape = sphere; query.CollideWithBodies = true; query.CollideWithAreas = false;