UNITY3D運(yùn)行動(dòng)畫時(shí)修改局部骨骼的角度
2019/2/14??????點(diǎn)擊:
當(dāng)UNITY3D中動(dòng)畫播放時(shí),有時(shí)需要修改局部骨骼的角度或者位置, 怎么辦? 上代碼:
private void OnAnimatorIK(int layerIndex)
{
float angle_Z = Vector3.Angle(player.position - transform.position, transform.forward);
Debug.Log(angle_Z);
animator.SetBoneLocalRotation(HumanBodyBones.Head, Quaternion.Euler(0, 0, angle_Z));
}
- 上一篇:Unity3D 骨骼動(dòng)畫原理小記 2019/2/14
- 下一篇:電腦Unity上可用,部署到hololens眼鏡上失效 2019/2/3