UNPKG

@theatrejs/theatrejs

Version:

🎮 A JavaScript 2D Game Engine focused on creating pixel art games.

38 lines (32 loc) • 654 B
/** * @module EVENT_TYPES/GYROSCOPE */ /** * The gyroscope 'GYROSCOPE_ANALOG' event type. * @type {'gyroscopeanalog'} * @constant * * @memberof module:EVENT_TYPES/GYROSCOPE */ const GYROSCOPE_ANALOG = 'gyroscopeanalog'; /** * The gyroscope 'GYROSCOPE_DOWN' event type. * @type {'gyroscopedown'} * @constant * * @memberof module:EVENT_TYPES/GYROSCOPE */ const GYROSCOPE_DOWN = 'gyroscopedown'; /** * The gyroscope 'GYROSCOPE_UP' event type. * @type {'gyroscopeup'} * @constant * * @memberof module:EVENT_TYPES/GYROSCOPE */ const GYROSCOPE_UP = 'gyroscopeup'; export { GYROSCOPE_ANALOG, GYROSCOPE_DOWN, GYROSCOPE_UP };