UNPKG

@theatrejs/theatrejs

Version:

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

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