greasedLineMaterialDefaults.js 516 B

12345678910111213141516171819
  1. import { Color3 } from "../../Maths/math.color.js";
  2. /**
  3. * Default settings for GreasedLine materials
  4. */
  5. export class GreasedLineMaterialDefaults {
  6. }
  7. /**
  8. * Default line color for newly created lines
  9. */
  10. GreasedLineMaterialDefaults.DEFAULT_COLOR = Color3.White();
  11. /**
  12. * Default line width when sizeAttenuation is true
  13. */
  14. GreasedLineMaterialDefaults.DEFAULT_WIDTH_ATTENUATED = 1;
  15. /**
  16. * Defaule line width
  17. */
  18. GreasedLineMaterialDefaults.DEFAULT_WIDTH = 0.1;
  19. //# sourceMappingURL=greasedLineMaterialDefaults.js.map