• 您的位置:首页 > 新闻动态 > Unity3D

    UNITY3D运行动画时修改局部骨骼的角度

    2019/2/14      点击:

    当UNITY3D中动画播放时,有时需要修改局部骨骼的角度或者位置, 怎么办?  上代码:


    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));
        }