goal | @param goal текущий AvatarIKGoal. |
value | Получает вес пивота. |
Sets the translative weight of an IK goal (0 = at the original animation before IK, 1 = at the goal).
Цель IK задает позицию и вращение цели для указанной части тела. Юнити может рассчитать как двигать часть тела к цели от стартовой точки (т.е. текущей позиции и поворота, полученных из анимации).
Цель IK задает позицию и вращение цели для указанной части тела. Юнити может рассчитать как двигать часть тела к цели от стартовой точки (т.е. текущей позиции и поворота, полученных из анимации).
var objToPickUp: Transform;
private var animator: Animator;
function Start() { animator = GetComponent.<Animator>(); }
function OnAnimatorIK(layerIndex: int) { var reach: float = animator.GetFloat("RightHandReach"); animator.SetIKPositionWeight(AvatarIKGoal.RightHand, reach); animator.SetIKPosition(AvatarIKGoal.RightHand, objToPickUp.position); }
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { public Transform objToPickUp; private Animator animator; void Start() { animator = GetComponent<Animator>(); } void OnAnimatorIK(int layerIndex) { float reach = animator.GetFloat("RightHandReach"); animator.SetIKPositionWeight(AvatarIKGoal.RightHand, reach); animator.SetIKPosition(AvatarIKGoal.RightHand, objToPickUp.position); } }
See Also: SetIKPosition, SetIKRotationWeight.