Check if two animations are laterality variants of each other.
Korean: 애니메이션 측면성 변형 확인
Determines if two animations represent the same technique but with different laterality (left vs right stance).
First animation
Second animation
True if animations are laterality variants of the same base animation
const rightPunch = { name: "geon_punch", ... };const leftPunch = { name: "geon_punch_left", ... };const otherMove = { name: "tae_throw", ... };areLateralityVariants(rightPunch, leftPunch); // → trueareLateralityVariants(rightPunch, otherMove); // → false Copy
const rightPunch = { name: "geon_punch", ... };const leftPunch = { name: "geon_punch_left", ... };const otherMove = { name: "tae_throw", ... };areLateralityVariants(rightPunch, leftPunch); // → trueareLateralityVariants(rightPunch, otherMove); // → false
애니메이션측면성변형확인
Check if two animations are laterality variants of each other.
Korean: 애니메이션 측면성 변형 확인
Determines if two animations represent the same technique but with different laterality (left vs right stance).