standardMaterial.decalMap.d.ts 412 B

123456789101112
  1. import type { Nullable } from "../types.js";
  2. import { DecalMapConfiguration } from "./material.decalMapConfiguration";
  3. declare module "./standardMaterial" {
  4. interface StandardMaterial {
  5. /** @internal */
  6. _decalMap: Nullable<DecalMapConfiguration>;
  7. /**
  8. * Defines the decal map parameters for the material.
  9. */
  10. decalMap: Nullable<DecalMapConfiguration>;
  11. }
  12. }