Get all 16 stance guard poses mapped by StanceWithSide key.
Korean: 모든 자세 방어 포즈 (16개)
Returns a map of all possible stance+laterality combinations. This is a cached operation - subsequent calls return the same Map instance.
Map keys: "stance_laterality" (e.g., "geon_left", "tae_right")
"stance_laterality"
Map of all 16 guard pose configurations
const allPoses = getAllGuardPoses();const leftGeon = allPoses.get("geon_left");const rightTae = allPoses.get("tae_right");console.log(allPoses.size); // 16 (8 stances × 2 laterality) Copy
const allPoses = getAllGuardPoses();const leftGeon = allPoses.get("geon_left");const rightTae = allPoses.get("tae_right");console.log(allPoses.size); // 16 (8 stances × 2 laterality)
모든방어포즈가져오기
Get all 16 stance guard poses mapped by StanceWithSide key.
Korean: 모든 자세 방어 포즈 (16개)
Returns a map of all possible stance+laterality combinations. This is a cached operation - subsequent calls return the same Map instance.
Map keys:
"stance_laterality"(e.g., "geon_left", "tae_right")