From 1a3a9c2ee525b05306009b31881b5b5cab7d270a Mon Sep 17 00:00:00 2001 From: spatialfree Date: Sat, 7 Dec 2024 20:05:30 -0500 Subject: [PATCH] increase dist check radius --- src/Data.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Data.cs b/src/Data.cs index c65ded8..d40f6fb 100644 --- a/src/Data.cs +++ b/src/Data.cs @@ -29,7 +29,7 @@ public class Grab { if (!Held) // Allow only one hand at a time to grab { - if (Vec3.Distance(hand.palm.position, pose.position) < 0.1f) + if (Vec3.Distance(hand.palm.position, pose.position) < 0.14f) { held_by = hand; grab_ref = this;