export namespace Constants { export const enum Handedness { NONE = 'none', LEFT = 'left', RIGHT = 'right' } export const enum ComponentState { DEFAULT = 'default', TOUCHED = 'touched', PRESSED = 'pressed' } export const enum ComponentProperty { BUTTON = 'button', X_AXIS = 'xAxis', Y_AXIS = 'yAxis', STATE = 'state' } export const enum ComponentType { TRIGGER = 'trigger', SQUEEZE = 'squeeze', TOUCHPAD = 'touchpad', THUMBSTICK = 'thumbstick', BUTTON = 'button' } export const ButtonTouchThreshold = 0.05; export const AxisTouchThreshold = 0.1; export const enum VisualResponseProperty { TRANSFORM = 'transform', VISIBILITY = 'visibility' } }