Modify an IK (inverse kinematics) element
public override void UpdateIK(int layerIndex)
{
// Set the weight
CharacterActor.Animator.SetIKPositionWeight(avatarIKGoal, positionWeight);
// Set the position
CharacterActor.Animator.SetIKPosition(avatarIKGoal, position);
}Last updated