Black Trigram (흑괘) - Korean Martial Arts Combat Simulator API - v0.7.0
    Preparing search index...

    Function areLateralityVariants

    • 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).

      Parameters

      Returns boolean

      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); // → true
      areLateralityVariants(rightPunch, otherMove); // → false

      애니메이션측면성변형확인