Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | /**
* Mobile Touch Controls
*
* Comprehensive mobile touch control UI system for Black Trigram
* Provides virtual controls, gesture recognition, and haptic feedback
*
* @module components/mobile
* @category Mobile Controls
* @korean 모바일 컨트롤
*/
// Virtual controls (Html-based, for use inside Three.js Canvas)
export { VirtualDPad } from "./VirtualDPad";
export type { DPadEventType, Direction, VirtualDPadProps } from "./VirtualDPad";
export { ActionButtons } from "./ActionButtons";
export type { ActionButtonsProps, ButtonEventType } from "./ActionButtons";
// Pure DOM mobile controls (for use outside Three.js Canvas)
// These components use position:fixed and do not depend on @react-three/drei
export { MobileControlsOverlay } from "./MobileControlsPure";
export type { MobileControlsOverlayProps } from "./MobileControlsPure";
export { StanceWheelPure } from "./StanceWheelPure";
export type { StanceWheelPureProps } from "./StanceWheelPure";
export { GestureRecognizerPure } from "./GestureRecognizerPure";
export type { GestureRecognizerPureProps } from "./GestureRecognizerPure";
// Backwards-compatible exports for tests that reference the non-Pure component names
// These alias the Pure implementations so existing tests can compile
export { StanceWheelPure as StanceWheel } from "./StanceWheelPure";
export type { StanceWheelPureProps as StanceWheelProps } from "./StanceWheelPure";
export { GestureRecognizerPure as GestureRecognizer } from "./GestureRecognizerPure";
export type { GestureRecognizerPureProps as GestureRecognizerProps } from "./GestureRecognizerPure";
// Performance optimization modules
export {
applyOptimizedUpdate,
createFilterStyle,
createTransformStyle,
useTouchOptimizer,
} from "./TouchOptimizer";
export type {
TouchOptimizerOptions,
TouchOptimizerReturn,
TouchPosition,
} from "./TouchOptimizer";
export {
HapticController,
OptimizedCombatHaptics,
stopOptimizedHaptic,
triggerCustomOptimizedHaptic,
triggerOptimizedHaptic,
} from "./HapticController";
export type {
DevicePerformanceTier,
HapticIntensity as OptimizedHapticIntensity,
} from "./HapticController";
export {
PerformanceMonitor,
canHandle60Fps,
getPerformanceMonitor,
getPerformanceTier,
getQualityRecommendations,
} from "./PerformanceMonitor";
export type {
PerformanceMetrics,
PerformanceMonitorOptions,
PerformanceTier,
} from "./PerformanceMonitor";
|