UNPKG

@babylonjs/viewer

Version:

The Babylon Viewer aims to simplify a specific but common Babylon.js use case: loading, viewing, and interacting with a 3D model.

88 lines (85 loc) 4.1 kB
import { bK as PBRMaterial, aB as Color3, bH as unregisterGLTFExtension, bG as registerGLTFExtension } from './index-D8dpgsp6.esm.js'; import { GLTFLoader } from './glTFLoader-CXu-CPwW.esm.js'; import './bone-CQ8yNhG-.esm.js'; import './skeleton-B8Pgvyub.esm.js'; import './rawTexture-CaxT6-BM.esm.js'; import './assetContainer-CBeMeGtB.esm.js'; import './objectModelMapping-lExVxlnD.esm.js'; const NAME = "KHR_materials_pbrSpecularGlossiness"; /** * [Specification](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/README.md) */ // eslint-disable-next-line @typescript-eslint/naming-convention class KHR_materials_pbrSpecularGlossiness { /** * @internal */ constructor(loader) { /** * The name of this extension. */ this.name = NAME; /** * Defines a number that determines the order the extensions are applied. */ this.order = 200; this._loader = loader; this.enabled = this._loader.isExtensionUsed(NAME); } /** @internal */ dispose() { this._loader = null; } /** * @internal */ // eslint-disable-next-line no-restricted-syntax loadMaterialPropertiesAsync(context, material, babylonMaterial) { return GLTFLoader.LoadExtensionAsync(context, material, this.name, async (extensionContext, extension) => { const promises = new Array(); promises.push(this._loader.loadMaterialBasePropertiesAsync(context, material, babylonMaterial)); promises.push(this._loadSpecularGlossinessPropertiesAsync(extensionContext, extension, babylonMaterial)); this._loader.loadMaterialAlphaProperties(context, material, babylonMaterial); // eslint-disable-next-line github/no-then return await Promise.all(promises).then(() => { }); }); } // eslint-disable-next-line @typescript-eslint/promise-function-async, no-restricted-syntax _loadSpecularGlossinessPropertiesAsync(context, properties, babylonMaterial) { if (!(babylonMaterial instanceof PBRMaterial)) { throw new Error(`${context}: Material type not supported`); } const promises = new Array(); babylonMaterial.metallic = null; babylonMaterial.roughness = null; if (properties.diffuseFactor) { babylonMaterial.albedoColor = Color3.FromArray(properties.diffuseFactor); babylonMaterial.alpha = properties.diffuseFactor[3]; } else { babylonMaterial.albedoColor = Color3.White(); } babylonMaterial.reflectivityColor = properties.specularFactor ? Color3.FromArray(properties.specularFactor) : Color3.White(); babylonMaterial.microSurface = properties.glossinessFactor == undefined ? 1 : properties.glossinessFactor; if (properties.diffuseTexture) { promises.push(this._loader.loadTextureInfoAsync(`${context}/diffuseTexture`, properties.diffuseTexture, (texture) => { texture.name = `${babylonMaterial.name} (Diffuse)`; babylonMaterial.albedoTexture = texture; })); } if (properties.specularGlossinessTexture) { promises.push(this._loader.loadTextureInfoAsync(`${context}/specularGlossinessTexture`, properties.specularGlossinessTexture, (texture) => { texture.name = `${babylonMaterial.name} (Specular Glossiness)`; babylonMaterial.reflectivityTexture = texture; babylonMaterial.reflectivityTexture.hasAlpha = true; })); babylonMaterial.useMicroSurfaceFromReflectivityMapAlpha = true; } // eslint-disable-next-line github/no-then return Promise.all(promises).then(() => { }); } } unregisterGLTFExtension(NAME); registerGLTFExtension(NAME, true, (loader) => new KHR_materials_pbrSpecularGlossiness(loader)); export { KHR_materials_pbrSpecularGlossiness }; //# sourceMappingURL=KHR_materials_pbrSpecularGlossiness-DOeq5bOr.esm.js.map