1234567891011121314151617181920 |
- import { ISceneLoaderPlugin, ISceneLoaderPluginAsync, Material } from 'babylonjs';
- import { ViewerModel } from '../../model/viewerModel';
- import { ILoaderPlugin } from './loaderPlugin';
- /**
- * Force-apply material configuration right after a material was loaded.
- */
- export class ApplyMaterialConfigPlugin implements ILoaderPlugin {
- private _model: ViewerModel;
- public onInit(loader: ISceneLoaderPlugin | ISceneLoaderPluginAsync, model: ViewerModel) {
- this._model = model;
- }
- public onMaterialLoaded(material: Material) {
- this._model && this._model._applyModelMaterialConfiguration(material);
- }
- }
|