Skip to main content

Animator.SetIKHintPosition(AvatarIKHint hint, Vector3 hintPosition)

Sets the position of an IK hint.

Parameters:

NameTypeDescription
hintAvatarIKHintThe AvatarIKHint that is set.
hintPositionVector3The position in world space.

Usage

---@type Animator
local animator;

---@type AvatarIKHint
local hint;

---@type Vector3
local hintPosition;


animator.SetIKHintPosition(hint, hintPosition)