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.

76 lines (72 loc) 2.87 kB
import { b as GLTFLoader } from './glTFLoader.pure-BaIedO7s.esm.js'; import { bo as unregisterGLTFExtension, bp as registerGLTFExtension } from './index-MZPybX0H.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'; const NAME = "KHR_materials_emissive_strength"; /** * [Specification](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Khronos/KHR_materials_emissive_strength/README.md) */ // eslint-disable-next-line @typescript-eslint/naming-convention class KHR_materials_emissive_strength { /** * @internal */ constructor(loader) { /** * The name of this extension. */ this.name = NAME; /** * Defines a number that determines the order the extensions are applied. */ this.order = 170; 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) => { await this._loader.loadMaterialPropertiesAsync(context, material, babylonMaterial); this._loadEmissiveProperties(extensionContext, extension, babylonMaterial); return await Promise.resolve(); }); } _loadEmissiveProperties(context, properties, babylonMaterial) { if (properties.emissiveStrength !== undefined) { const adapter = this._loader._getOrCreateMaterialAdapter(babylonMaterial); adapter.emissionLuminance = properties.emissiveStrength; } } } let _Registered = false; /** * Registers the KHR_materials_emissive_strength 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_emissive_strength() { if (_Registered) { return; } _Registered = true; unregisterGLTFExtension(NAME); registerGLTFExtension(NAME, true, (loader) => new KHR_materials_emissive_strength(loader)); } /** * Re-exports the pure implementation and applies the runtime registration side effect. * Import "./KHR_materials_emissive_strength.pure" for tree-shakeable, side-effect-free usage. */ RegisterKHR_materials_emissive_strength(); export { KHR_materials_emissive_strength, RegisterKHR_materials_emissive_strength }; //# sourceMappingURL=KHR_materials_emissive_strength-BJ7EqS7E.esm.js.map