中文资源在线天堂,狠狠亚洲婷婷综合色香五月排名,亚洲熟妇丰满多毛xxxx,大陆熟妇丰满xxxxx

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