Made Thumb Way less aggressive when touching using hand pose emulation

This commit is contained in:
Schmarni
2023-11-20 19:24:11 +01:00
parent cc4d33a8f3
commit f47375b97d

View File

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