extendedMaterialLoaderPlugin.d.ts 401 B

123456789
  1. import { ILoaderPlugin } from "./loaderPlugin";
  2. import { Material } from "babylonjs";
  3. /**
  4. * A (PBR) material will be extended using this function.
  5. * This function will hold extra default configuration for the viewer, if not implemented in Babylon itself.
  6. */
  7. export declare class ExtendedMaterialLoaderPlugin implements ILoaderPlugin {
  8. onMaterialLoaded(baseMaterial: Material): void;
  9. }