UNPKG

@theatrejs/theatrejs

Version:

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

38 lines (32 loc) • 501 B
/** * @module COLLIDER_TYPES */ /** * The 'dynamic' collider type. * @type {'DYNAMIC'} * @constant * * @memberof module:COLLIDER_TYPES */ const DYNAMIC = 'DYNAMIC'; /** * The 'kinetic' collider type. * @type {'KINETIC'} * @constant * * @memberof module:COLLIDER_TYPES */ const KINETIC = 'KINETIC'; /** * The 'static' collider type. * @type {'STATIC'} * @constant * * @memberof module:COLLIDER_TYPES */ const STATIC = 'STATIC'; export { DYNAMIC, KINETIC, STATIC };