greasedLineMaterialDefaults.d.ts 659 B

123456789101112131415161718192021222324
  1. import type { RawTexture } from "../Textures/rawTexture";
  2. import type { Nullable } from "../../types";
  3. import { Color3 } from "../../Maths/math.color";
  4. /**
  5. * Default settings for GreasedLine materials
  6. */
  7. export declare class GreasedLineMaterialDefaults {
  8. /**
  9. * Default line color for newly created lines
  10. */
  11. static DEFAULT_COLOR: Color3;
  12. /**
  13. * Default line width when sizeAttenuation is true
  14. */
  15. static DEFAULT_WIDTH_ATTENUATED: number;
  16. /**
  17. * Defaule line width
  18. */
  19. static DEFAULT_WIDTH: number;
  20. /**
  21. * Empty colors texture for WebGPU
  22. */
  23. static EmptyColorsTexture: Nullable<RawTexture>;
  24. }