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

    Function getGuardPoseForStanceWithSide

    • Get guard pose for a stance with StanceWithSide support.

      Korean: 자세 방어 포즈 가져오기 (측면 지원)

      Convenience wrapper around getGuardPoseForStance() that accepts StanceWithSide strings directly.

      Parameters

      • stanceOrSide:
            | TrigramStance
            | "geon_left"
            | "geon_right"
            | "tae_left"
            | "tae_right"
            | "li_left"
            | "li_right"
            | "jin_left"
            | "jin_right"
            | "son_left"
            | "son_right"
            | "gam_left"
            | "gam_right"
            | "gan_left"
            | "gan_right"
            | "gon_left"
            | "gon_right"

        Stance identifier with optional laterality

      • defaultLaterality: StanceLaterality = "right"

        Default laterality if not specified (default: "right")

      Returns StanceGuardPose | undefined

      Guard pose or undefined if not found

      const leftGeon = getGuardPoseForStanceWithSide("geon_left");
      const rightTae = getGuardPoseForStanceWithSide("tae_right");
      const gan = getGuardPoseForStanceWithSide("gan"); // Defaults to right

      자세방어포즈가져오기