序言:IK动画全名是Inverse Kinematics 意思是逆向动力学,就是子骨骼节点带动父骨骼节点运动。
一、适用范围:
在Mecanim系统中,任何正确设置了Avatar的人形动画都支持IK功能。
二、常用函数:
1、SetIKPositionWeight
2、SetIKRotationWeight
3、SetIKPosition
4、SetIkRotation
5、SetLookAtPosition
6、bodyPosition
7、bodyRotation
如下就用了Ik功能,可以根据移动方块来控制手臂的移动:
三、IK功能的打开:
选中一个动画模型,其必须完成了正确的骨骼映射,具体的骨骼映射步骤可以参考上一篇,
为其创建动画状态机,这里需要注意,在动画层窗口中选中IK Pass选项,一定要选择,否则无法正确使用IK功能。
四、代码的控制:
这里我们就可以通过以下代码进行控制角色的右手臂被方块控制移动了。
using UnityEngine;
using System;
using System.Collections; [RequireComponent(typeof(Animator))] public class IK : MonoBehaviour
{ protected Animator animator; //动画控制
public bool ikActive = false; //是否开始IK动画
public Transform rightHand = null; //右手子节点参考的目标 void Start()
{ animator = GetComponent<Animator>(); //得到动画控制对象
}
//它是回调访法,必须勾选IK Pass!!!
void OnAnimatorIK()
{
if (animator)
{ //即或IK动画后开始让右手节点寻找参考目标。
if (ikActive)
{ //设置骨骼的权重,1表示完整的骨骼,如果是0.5,哪么骨骼权重就是一半,可移动或旋转的就是一半
animator.SetIKPositionWeight(AvatarIKGoal.RightHand, 1f);
animator.SetIKRotationWeight(AvatarIKGoal.RightHand, 1f); //set the position and the rotation of the right hand where the external object is
if (rightHandObj != null)
{
//设置右手根据目标点而旋转移动父骨骼节点
animator.SetIKPosition(AvatarIKGoal.RightHand, rightHand.position);
animator.SetIKRotation(AvatarIKGoal.RightHand, rightHand.rotation);
} } //如果取消IK动画,哪么重置骨骼的坐标。
else
{
animator.SetIKPositionWeight(AvatarIKGoal.RightHand, );
animator.SetIKRotationWeight(AvatarIKGoal.RightHand, );
}
}
}
}
五、总结:
我这里只练习了右手臂的,IK定义可以控制两只手和两只脚的移动,所以大家可以去尝试尝试。
2017-12-17、11:31:43