Home Reference Source

src/enums/VignetteTechnique.js

  1. /**
  2. * An enumeration of Vignette techniques.
  3. *
  4. * @type {Object}
  5. * @property {Number} DEFAULT - Produces a dusty look.
  6. * @property {Number} ESKIL - Produces a burned look.
  7. */
  8.  
  9. export const VignetteTechnique = {
  10. DEFAULT: 0,
  11. ESKIL: 1
  12. };