You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When FingerModel.deformPosition is set to true, the RiggedFinger script gets the bone center position and moves the bone to this position. This is incorrect since bones pivot around their proximal joint (Bone.prevJoint), not the center point between two joints.
The GetBoneCenter() function is used in non-rigged hand scripts as well, so a new function will be needed to correct this problem.
An easy way to observe the problem is to set deformPosition to true on one of the standard rigged hand prefabs. Using the GetBoneCenter() function, the hands are webbed and arthritic. Replacing bone center with the previous joint position makes things look much better.
The text was updated successfully, but these errors were encountered:
When FingerModel.deformPosition is set to true, the RiggedFinger script gets the bone center position and moves the bone to this position. This is incorrect since bones pivot around their proximal joint (Bone.prevJoint), not the center point between two joints.
The GetBoneCenter() function is used in non-rigged hand scripts as well, so a new function will be needed to correct this problem.
An easy way to observe the problem is to set deformPosition to true on one of the standard rigged hand prefabs. Using the GetBoneCenter() function, the hands are webbed and arthritic. Replacing bone center with the previous joint position makes things look much better.
The text was updated successfully, but these errors were encountered: