Skip to main content

Animator.SetIKHintPositionWeight(AvatarIKHint hint, number value)

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

Parameters:

NameTypeDescription
hintAvatarIKHintThe AvatarIKHint that is set.
valuenumberThe translative weight.

Usage

---@type Animator
local animator;

---@type AvatarIKHint
local hint;

---@type number
local value;


animator.SetIKHintPositionWeight(hint, value)