skeleton:getIKConstraintNames()¶
Type:
functionSee also: skeleton, skeleton:getIKConstraint()
Overview:¶
Returns an array of all IK constraint names in this skeleton’s data.
Syntax:¶
local names = skeleton:getIKConstraintNames()
Example:¶
local ikNames = hero:getIKConstraintNames()
for i, name in ipairs(ikNames) do
print("IK Constraint name:", name)
end