Home Reference Source

src/enums/GlitchMode.js

  1. /**
  2. * A glitch mode enumeration.
  3. *
  4. * @type {Object}
  5. * @property {Number} DISABLED - No glitches.
  6. * @property {Number} SPORADIC - Sporadic glitches.
  7. * @property {Number} CONSTANT_MILD - Constant mild glitches.
  8. * @property {Number} CONSTANT_WILD - Constant wild glitches.
  9. */
  10.  
  11. export const GlitchMode = {
  12. DISABLED: 0,
  13. SPORADIC: 1,
  14. CONSTANT_MILD: 2,
  15. CONSTANT_WILD: 3
  16. };