From f47375b97d9450536def276f1533a64530a237a9 Mon Sep 17 00:00:00 2001 From: Schmarni Date: Mon, 20 Nov 2023 19:24:11 +0100 Subject: [PATCH] Made Thumb Way less aggressive when touching using hand pose emulation --- src/xr_input/hands/emulated.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/xr_input/hands/emulated.rs b/src/xr_input/hands/emulated.rs index 7c0187b..10282f4 100644 --- a/src/xr_input/hands/emulated.rs +++ b/src/xr_input/hands/emulated.rs @@ -518,6 +518,9 @@ fn get_bone_curl_angle(bone: HandJoint, curl: f32) -> f32 { HandJoint::RING_PROXIMAL => 0.0, HandJoint::LITTLE_PROXIMAL => 0.0, HandJoint::THUMB_PROXIMAL => 0.0, + HandJoint::THUMB_TIP => 0.1, + HandJoint::THUMB_DISTAL => 0.1, + HandJoint::THUMB_METACARPAL => 0.1, _ => 1.0, }; let curl_angle = -((mul * curl * 80.0) + 5.0);