BlendOption.js 858 B

123456789101112131415161718192021222324252627282930
  1. import freezeObject from '../Core/freezeObject.js';
  2. /**
  3. * Determines how opaque and translucent parts of billboards, points, and labels are blended with the scene.
  4. *
  5. * @exports BlendOption
  6. */
  7. var BlendOption = {
  8. /**
  9. * The billboards, points, or labels in the collection are completely opaque.
  10. * @type {Number}
  11. * @constant
  12. */
  13. OPAQUE : 0,
  14. /**
  15. * The billboards, points, or labels in the collection are completely translucent.
  16. * @type {Number}
  17. * @constant
  18. */
  19. TRANSLUCENT : 1,
  20. /**
  21. * The billboards, points, or labels in the collection are both opaque and translucent.
  22. * @type {Number}
  23. * @constant
  24. */
  25. OPAQUE_AND_TRANSLUCENT : 2
  26. };
  27. export default freezeObject(BlendOption);