お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
Close左足の底の位置の高さを取得します
void LateUpdate() { if(animator) { Vector3 leftFootT = animator.GetIKPosition(AvatarIKGoal.LeftFoot); Quaternion leftFootQ = animator.GetIKRotation(AvatarIKGoal.LeftFoot); Vector3 leftFootH = new Vector3(0, -animator.leftFeetBottomHeight, 0); Vector3 pos = leftFootT + leftFootQ * leftFootH; Debug.Log(pos); } }