Get the laterality identifier for an animation.
Korean: 애니메이션 측면성 식별
Determines if an animation is configured for left or right laterality based on its name suffix.
Skeletal animation to inspect
"left" if animation has "_left" suffix, otherwise "right"
const rightAnim = { name: "geon_punch", ... };const leftAnim = { name: "geon_punch_left", ... };getAnimationLaterality(rightAnim); // → "right"getAnimationLaterality(leftAnim); // → "left" Copy
const rightAnim = { name: "geon_punch", ... };const leftAnim = { name: "geon_punch_left", ... };getAnimationLaterality(rightAnim); // → "right"getAnimationLaterality(leftAnim); // → "left"
애니메이션측면성식별
Get the laterality identifier for an animation.
Korean: 애니메이션 측면성 식별
Determines if an animation is configured for left or right laterality based on its name suffix.