@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.
92 lines (89 loc) • 3.94 kB
JavaScript
import { bM as PBRMaterial, aH as Color3, bJ as unregisterGLTFExtension, bI as registerGLTFExtension } from './index-FzOfPXLV.esm.js';
import { GLTFLoader } from './glTFLoader-VVyk3AwX.esm.js';
import './bone--mL3H5cQ.esm.js';
import './skeleton-B7-ffRm_.esm.js';
import './rawTexture-B2DimmQ5.esm.js';
import './assetContainer-8JZnoDWQ.esm.js';
import './objectModelMapping-CJnQ6at_.esm.js';
const NAME = "KHR_materials_sheen";
/**
* [Specification](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Khronos/KHR_materials_sheen/README.md)
* [Playground Sample](https://www.babylonjs-playground.com/frame.html#BNIZX6#4)
*/
// eslint-disable-next-line @typescript-eslint/naming-convention
class KHR_materials_sheen {
/**
* @internal
*/
constructor(loader) {
/**
* The name of this extension.
*/
this.name = NAME;
/**
* Defines a number that determines the order the extensions are applied.
*/
this.order = 190;
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.loadMaterialPropertiesAsync(context, material, babylonMaterial));
promises.push(this._loadSheenPropertiesAsync(extensionContext, extension, 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
_loadSheenPropertiesAsync(context, properties, babylonMaterial) {
if (!(babylonMaterial instanceof PBRMaterial)) {
throw new Error(`${context}: Material type not supported`);
}
const promises = new Array();
babylonMaterial.sheen.isEnabled = true;
babylonMaterial.sheen.intensity = 1;
if (properties.sheenColorFactor != undefined) {
babylonMaterial.sheen.color = Color3.FromArray(properties.sheenColorFactor);
}
else {
babylonMaterial.sheen.color = Color3.Black();
}
if (properties.sheenColorTexture) {
promises.push(this._loader.loadTextureInfoAsync(`${context}/sheenColorTexture`, properties.sheenColorTexture, (texture) => {
texture.name = `${babylonMaterial.name} (Sheen Color)`;
babylonMaterial.sheen.texture = texture;
}));
}
if (properties.sheenRoughnessFactor !== undefined) {
babylonMaterial.sheen.roughness = properties.sheenRoughnessFactor;
}
else {
babylonMaterial.sheen.roughness = 0;
}
if (properties.sheenRoughnessTexture) {
properties.sheenRoughnessTexture.nonColorData = true;
promises.push(this._loader.loadTextureInfoAsync(`${context}/sheenRoughnessTexture`, properties.sheenRoughnessTexture, (texture) => {
texture.name = `${babylonMaterial.name} (Sheen Roughness)`;
babylonMaterial.sheen.textureRoughness = texture;
}));
}
babylonMaterial.sheen.albedoScaling = true;
babylonMaterial.sheen.useRoughnessFromMainTexture = false;
// eslint-disable-next-line github/no-then
return Promise.all(promises).then(() => { });
}
}
unregisterGLTFExtension(NAME);
registerGLTFExtension(NAME, true, (loader) => new KHR_materials_sheen(loader));
export { KHR_materials_sheen };
//# sourceMappingURL=KHR_materials_sheen-lC1PPZf9.esm.js.map