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

    Variable MobileControlsWrapperConst

    MobileControlsWrapper: React.FC<MobileControlsWrapperProps> = ...

    MobileControlsWrapper - Container for all mobile touch controls

    Provides virtual controls for mobile combat gameplay:

    • Virtual D-Pad (bottom-left) for 8-direction movement
    • Action Buttons (bottom-right) for attack/block
    • Stance Wheel (right-center) for trigram stance selection
    • Gesture Recognition for swipe-based actions
    <MobileControlsWrapper
    enabled={mobileControlsEnabled}
    currentStanceIndex={currentStanceIndex}
    stanceWheelExpanded={stanceWheelExpanded}
    onMove={handleMobileMove}
    onAttack={handleMobileAttack}
    onBlock={handleMobileBlock}
    onStanceChange={handleMobileStanceChange}
    onStanceWheelToggle={() => setStanceWheelExpanded(!stanceWheelExpanded)}
    onGesture={handleMobileGesture}
    />