返回介绍

MonoBehaviour.OnAnimatorIK(int) 当动画器IK

发布于 2019-12-18 15:38:02 字数 2550 浏览 1138 评论 0 收藏 0

Parameters 参数

layerIndexThe index of the layer on which the IK solver is called.
当IK解算器被调用,该层的索引。

Description 描述

Callback for setting up animation IK (inverse kinematics).

设置动画的IK回调(反向运动学)。

OnAnimatorIK() is called by the Animator Component immediately before it updates its internal IK system. This callback can be used to set the positions of the IK goals and their respective weights.

在它的内部IK系统更新之前,OnAnimatorIK()是通过Animator组件立即被调用。这个回调用来设置IK的目标位置和它们各自的权重。

JavaScript:

var leftFootPositionWeight: float;
var leftFootRotationWeight: float;
var leftFootObj: Transform;
 
private var animator: Animator;
 
 
function Start() {
	animator = GetComponent.<Animator>();
}
 
 
function OnAnimatorIK(layerIndex: int) {
	animator.SetIKPositionWeight(AvatarIKGoal.LeftFoot,leftFootPositionWeight);
	animator.SetIKRotationWeight(AvatarIKGoal.LeftFoot,leftFootRotationWeight);     
	animator.SetIKPosition(AvatarIKGoal.LeftFoot,leftFootObj.position);                    
	animator.SetIKRotation(AvatarIKGoal.LeftFoot,leftFootObj.rotation);
}

C#:

using UnityEngine;
using System.Collections;
 
public class ExampleClass : MonoBehaviour {
    public float leftFootPositionWeight;
    public float leftFootRotationWeight;
    public Transform leftFootObj;
    private Animator animator;
    void Start() {
        animator = GetComponent<Animator>();
    }
    void OnAnimatorIK(int layerIndex) {
        animator.SetIKPositionWeight(AvatarIKGoal.LeftFoot, leftFootPositionWeight);
        animator.SetIKRotationWeight(AvatarIKGoal.LeftFoot, leftFootRotationWeight);
        animator.SetIKPosition(AvatarIKGoal.LeftFoot, leftFootObj.position);
        animator.SetIKRotation(AvatarIKGoal.LeftFoot, leftFootObj.rotation);
    }
}

See Also: Animator.SetIKPosition, Animator.SetIKPositionWeight, Animator.SetIKRotation, Animator.SetIKRotationWeight.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文