|
@@ -5,8 +5,8 @@ declare module "babylonjs-loaders"{ export=BABYLON;}
|
|
|
|
|
|
// Generated by dts-bundle v0.7.3
|
|
|
// Dependencies for this module:
|
|
|
-// ../../../../../Tools/gulp/babylonjs
|
|
|
-// ../../../../../Tools/gulp/babylonjs-loaders
|
|
|
+// ../../../../../Tools/Gulp/babylonjs
|
|
|
+// ../../../../../Tools/Gulp/babylonjs-loaders
|
|
|
|
|
|
declare module 'babylonjs-viewer' {
|
|
|
import { mapperManager } from 'babylonjs-viewer/configuration/mappers';
|
|
@@ -1860,7 +1860,15 @@ declare module 'babylonjs-viewer/loader/plugins/applyMaterialConfig' {
|
|
|
}
|
|
|
|
|
|
declare module 'babylonjs-viewer/loader/plugins/extendedMaterialLoaderPlugin' {
|
|
|
-
|
|
|
+ import { Material } from 'babylonjs';
|
|
|
+ import { ILoaderPlugin } from 'babylonjs-viewer/loader/plugins/loaderPlugin';
|
|
|
+ /**
|
|
|
+ * A (PBR) material will be extended using this function.
|
|
|
+ * This function will hold extra default configuration for the viewer, if not implemented in Babylon itself.
|
|
|
+ */
|
|
|
+ export class ExtendedMaterialLoaderPlugin implements ILoaderPlugin {
|
|
|
+ onMaterialLoaded(baseMaterial: Material): void;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
declare module 'babylonjs-viewer/configuration/interfaces/cameraConfiguration' {
|