@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.
103 lines (99 loc) • 4.61 kB
JavaScript
import { b as GLTFLoader } from './glTFLoader.pure-BaIedO7s.esm.js';
import { i as Color3, bo as unregisterGLTFExtension, bp as registerGLTFExtension } from './index-MZPybX0H.esm.js';
import { e as ensureTransmissionHelper } from './transmissionHelper-DFJmAlRG.esm.js';
import './morphTargetManager-CK7B3gaT.esm.js';
import './bone.pure-CjsCww39.esm.js';
import './skeleton-D7Sw58cv.esm.js';
import './assetContainer-Bm0vsreJ.esm.js';
import './objectModelMapping-De5EKNEZ.esm.js';
import './spotLight.pure-CRdZC6Ci.esm.js';
import './renderTargetTexture-vYCS9q1L.esm.js';
import './tools-DC6rsfz_.esm.js';
const NAME = "KHR_materials_diffuse_transmission";
/**
* [Proposed Specification](https://github.com/KhronosGroup/glTF/pull/1825)
* !!! Experimental Extension Subject to Changes !!!
*/
// eslint-disable-next-line @typescript-eslint/naming-convention
class KHR_materials_diffuse_transmission {
/**
* @internal
*/
constructor(loader) {
/**
* The name of this extension.
*/
this.name = NAME;
/**
* Defines a number that determines the order the extensions are applied.
*/
this.order = 174;
this._loader = loader;
this.enabled = this._loader.isExtensionUsed(NAME);
if (this.enabled) {
loader.parent.transparencyAsCoverage = true;
}
}
/** @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._loadTranslucentPropertiesAsync(extensionContext, material, babylonMaterial, extension));
return await Promise.all(promises).then(() => { });
});
}
// eslint-disable-next-line no-restricted-syntax, @typescript-eslint/promise-function-async
_loadTranslucentPropertiesAsync(context, material, babylonMaterial, extension) {
const adapter = this._loader._getOrCreateMaterialAdapter(babylonMaterial);
adapter.configureSubsurface();
adapter.subsurfaceWeight = extension.diffuseTransmissionFactor ?? 0;
if (adapter.subsurfaceWeight > 0) {
ensureTransmissionHelper(this._loader, babylonMaterial);
}
adapter.diffuseTransmissionTint = extension.diffuseTransmissionColorFactor !== undefined ? Color3.FromArray(extension.diffuseTransmissionColorFactor) : Color3.White();
const promises = new Array();
if (extension.diffuseTransmissionTexture) {
extension.diffuseTransmissionTexture.nonColorData = true;
promises.push(this._loader.loadTextureInfoAsync(`${context}/diffuseTransmissionTexture`, extension.diffuseTransmissionTexture).then((texture) => {
texture.name = `${babylonMaterial.name} (Diffuse Transmission)`;
adapter.subsurfaceWeightTexture = texture;
}));
}
if (extension.diffuseTransmissionColorTexture) {
promises.push(this._loader.loadTextureInfoAsync(`${context}/diffuseTransmissionColorTexture`, extension.diffuseTransmissionColorTexture).then((texture) => {
texture.name = `${babylonMaterial.name} (Diffuse Transmission Color)`;
adapter.diffuseTransmissionTintTexture = texture;
}));
}
return Promise.all(promises).then(() => { });
}
}
let _Registered = false;
/**
* Registers the KHR_materials_diffuse_transmission glTF loader extension.
* Safe to call multiple times; only the first call has an effect.
*/
// eslint-disable-next-line @typescript-eslint/naming-convention
function RegisterKHR_materials_diffuse_transmission() {
if (_Registered) {
return;
}
_Registered = true;
unregisterGLTFExtension(NAME);
registerGLTFExtension(NAME, true, (loader) => new KHR_materials_diffuse_transmission(loader));
}
/**
* Re-exports the pure implementation and applies the runtime registration side effect.
* Import "./KHR_materials_diffuse_transmission.pure" for tree-shakeable, side-effect-free usage.
*/
RegisterKHR_materials_diffuse_transmission();
export { KHR_materials_diffuse_transmission, RegisterKHR_materials_diffuse_transmission };
//# sourceMappingURL=KHR_materials_diffuse_transmission-D86vPbAP.esm.js.map