From 8a69c2d51e417ea633b60a211b76223b88ba71e8 Mon Sep 17 00:00:00 2001 From: NotAKidoS <37721153+NotAKidOnSteam@users.noreply.github.com> Date: Sun, 16 Apr 2023 21:43:13 -0500 Subject: [PATCH] Update DesktopVRIKSystem.cs --- DesktopVRIK/DesktopVRIKSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DesktopVRIK/DesktopVRIKSystem.cs b/DesktopVRIK/DesktopVRIKSystem.cs index b879af9..479384c 100644 --- a/DesktopVRIK/DesktopVRIKSystem.cs +++ b/DesktopVRIK/DesktopVRIKSystem.cs @@ -283,7 +283,7 @@ internal class DesktopVRIKSystem : MonoBehaviour avatarIKSolver.IKPositionWeight = BodySystem.TrackingPositionWeight; avatarIKSolver.locomotion.weight = _locomotionWeight; - bool useAnimatedBendNormal = _locomotionWeight <= 0f; + bool useAnimatedBendNormal = _locomotionWeight <= 0.5f; avatarIKSolver.leftLeg.useAnimatedBendNormal = useAnimatedBendNormal; avatarIKSolver.rightLeg.useAnimatedBendNormal = useAnimatedBendNormal; SetArmWeight(avatarIKSolver.leftArm, BodySystem.TrackingLeftArmEnabled && avatarIKSolver.leftArm.target != null);