increase dist check radius

This commit is contained in:
ethan merchant 2024-12-07 20:05:30 -05:00
parent a5328c1a6e
commit 1a3a9c2ee5

View file

@ -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;