pbrMaterial.decalMap.d.ts 414 B

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