Version: 2017.1

Animator.SetIKPositionWeight

Switch to Manual
public void SetIKPositionWeight (AvatarIKGoal goal, float value);

Parameters

goal @param goal текущий AvatarIKGoal.
value Получает вес пивота.

Description

Sets the translative weight of an IK goal (0 = at the original animation before IK, 1 = at the goal).

Цель IK задает позицию и вращение цели для указанной части тела. Юнити может рассчитать как двигать часть тела к цели от стартовой точки (т.е. текущей позиции и поворота, полученных из анимации).

Цель IK задает позицию и вращение цели для указанной части тела. Юнити может рассчитать как двигать часть тела к цели от стартовой точки (т.е. текущей позиции и поворота, полученных из анимации).

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