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

    Interface VitalPointMarkers3DProps

    Props for the VitalPointMarkers3D component. Controls visibility and interaction with anatomical targeting points.

    interface VitalPointMarkers3DProps {
        animated?: boolean;
        onPointClick?: (vitalPointId: string) => void;
        onPointHover?: (vitalPointId: string | null) => void;
        position?: [number, number, number];
        regionFilter?: BodyRegionFilter;
        scale?: number;
        searchQuery?: string;
        selectedPoint?: string | null;
        severityFilter?: VitalPointSeverity[];
        showLabels?: boolean;
        visible?: boolean;
    }
    Index

    Properties

    animated?: boolean

    Whether to enable pulsing animation. Defaults to true

    onPointClick?: (vitalPointId: string) => void

    Callback when a vital point is clicked

    onPointHover?: (vitalPointId: string | null) => void

    Callback when a vital point is hovered

    position?: [number, number, number]

    3D world position of the character [x, y, z]. Defaults to [0, 0, 0]

    regionFilter?: BodyRegionFilter

    Filter points by body region

    scale?: number

    Scale multiplier for marker size. Defaults to 1.0

    searchQuery?: string

    Search query to filter points by name

    selectedPoint?: string | null

    Selected vital point ID for highlighting

    severityFilter?: VitalPointSeverity[]

    Filter points by severity level

    showLabels?: boolean

    Whether to show point labels with Korean names

    visible?: boolean

    Whether markers are visible. Defaults to true