UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

15 lines (14 loc) 295 B
/** * @enum {number} */ export const AtlasPatchFlag = { Packed: 1, /** * Set when patch is drawn into the atlas, cleared when it's not */ Painted: 2, /** * Set when patch is added to an atlas and clear when it is removed */ Attached: 4 };