babylonjs-serializers 5.0.4 → 5.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -600,6 +600,97 @@ var KHR_materials_clearcoat = /** @class */ (function () {
600
600
  _glTFExporter__WEBPACK_IMPORTED_MODULE_0__._Exporter.RegisterExtension(NAME, function (exporter) { return new KHR_materials_clearcoat(exporter); });
601
601
 
602
602
 
603
+ /***/ }),
604
+
605
+ /***/ "../../../lts/serializers/dist/glTF/2.0/Extensions/KHR_materials_iridescence.js":
606
+ /*!**************************************************************************************!*\
607
+ !*** ../../../lts/serializers/dist/glTF/2.0/Extensions/KHR_materials_iridescence.js ***!
608
+ \**************************************************************************************/
609
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
610
+
611
+ __webpack_require__.r(__webpack_exports__);
612
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
613
+ /* harmony export */ "KHR_materials_iridescence": () => (/* binding */ KHR_materials_iridescence)
614
+ /* harmony export */ });
615
+ /* harmony import */ var _glTFExporter__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../glTFExporter */ "../../../lts/serializers/dist/glTF/2.0/glTFExporter.js");
616
+ /* harmony import */ var core_Materials_PBR_pbrBaseMaterial__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! core/Materials/PBR/pbrBaseMaterial */ "core/Maths/math.vector");
617
+ /* harmony import */ var core_Materials_PBR_pbrBaseMaterial__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(core_Materials_PBR_pbrBaseMaterial__WEBPACK_IMPORTED_MODULE_1__);
618
+
619
+
620
+ var NAME = "KHR_materials_iridescence";
621
+ /**
622
+ * @hidden
623
+ */
624
+ // eslint-disable-next-line @typescript-eslint/naming-convention
625
+ var KHR_materials_iridescence = /** @class */ (function () {
626
+ function KHR_materials_iridescence(exporter) {
627
+ /** Name of this extension */
628
+ this.name = NAME;
629
+ /** Defines whether this extension is enabled */
630
+ this.enabled = true;
631
+ /** Defines whether this extension is required */
632
+ this.required = false;
633
+ this._wasUsed = false;
634
+ this._exporter = exporter;
635
+ }
636
+ KHR_materials_iridescence.prototype.dispose = function () { };
637
+ Object.defineProperty(KHR_materials_iridescence.prototype, "wasUsed", {
638
+ /** @hidden */
639
+ get: function () {
640
+ return this._wasUsed;
641
+ },
642
+ enumerable: false,
643
+ configurable: true
644
+ });
645
+ KHR_materials_iridescence.prototype.postExportMaterialAdditionalTextures = function (context, node, babylonMaterial) {
646
+ var additionalTextures = [];
647
+ if (babylonMaterial instanceof core_Materials_PBR_pbrBaseMaterial__WEBPACK_IMPORTED_MODULE_1__.PBRBaseMaterial) {
648
+ if (babylonMaterial.iridescence.isEnabled) {
649
+ if (babylonMaterial.iridescence.texture) {
650
+ additionalTextures.push(babylonMaterial.iridescence.texture);
651
+ }
652
+ if (babylonMaterial.iridescence.thicknessTexture && babylonMaterial.iridescence.thicknessTexture !== babylonMaterial.iridescence.texture) {
653
+ additionalTextures.push(babylonMaterial.iridescence.thicknessTexture);
654
+ }
655
+ return additionalTextures;
656
+ }
657
+ }
658
+ return [];
659
+ };
660
+ KHR_materials_iridescence.prototype.postExportMaterialAsync = function (context, node, babylonMaterial) {
661
+ var _this = this;
662
+ return new Promise(function (resolve) {
663
+ if (babylonMaterial instanceof core_Materials_PBR_pbrBaseMaterial__WEBPACK_IMPORTED_MODULE_1__.PBRBaseMaterial) {
664
+ if (!babylonMaterial.iridescence.isEnabled) {
665
+ resolve(node);
666
+ return;
667
+ }
668
+ _this._wasUsed = true;
669
+ node.extensions = node.extensions || {};
670
+ var iridescenceTextureInfo = _this._exporter._glTFMaterialExporter._getTextureInfo(babylonMaterial.iridescence.texture);
671
+ var iridescenceThicknessTextureInfo = _this._exporter._glTFMaterialExporter._getTextureInfo(babylonMaterial.iridescence.thicknessTexture);
672
+ var iridescenceInfo_1 = {
673
+ iridescenceFactor: babylonMaterial.iridescence.intensity,
674
+ iridescenceIor: babylonMaterial.iridescence.indexOfRefraction,
675
+ iridescenceThicknessMinimum: babylonMaterial.iridescence.minimumThickness,
676
+ iridescenceThicknessMaximum: babylonMaterial.iridescence.maximumThickness,
677
+ iridescenceTexture: iridescenceTextureInfo !== null && iridescenceTextureInfo !== void 0 ? iridescenceTextureInfo : undefined,
678
+ iridescenceThicknessTexture: iridescenceThicknessTextureInfo !== null && iridescenceThicknessTextureInfo !== void 0 ? iridescenceThicknessTextureInfo : undefined,
679
+ hasTextures: function () {
680
+ return iridescenceInfo_1.iridescenceTexture !== null || iridescenceInfo_1.iridescenceThicknessTexture !== null;
681
+ },
682
+ };
683
+ node.extensions[NAME] = iridescenceInfo_1;
684
+ }
685
+ resolve(node);
686
+ });
687
+ };
688
+ return KHR_materials_iridescence;
689
+ }());
690
+
691
+ _glTFExporter__WEBPACK_IMPORTED_MODULE_0__._Exporter.RegisterExtension(NAME, function (exporter) { return new KHR_materials_iridescence(exporter); });
692
+
693
+
603
694
  /***/ }),
604
695
 
605
696
  /***/ "../../../lts/serializers/dist/glTF/2.0/Extensions/KHR_materials_sheen.js":
@@ -690,6 +781,104 @@ var KHR_materials_sheen = /** @class */ (function () {
690
781
  _glTFExporter__WEBPACK_IMPORTED_MODULE_0__._Exporter.RegisterExtension(NAME, function (exporter) { return new KHR_materials_sheen(exporter); });
691
782
 
692
783
 
784
+ /***/ }),
785
+
786
+ /***/ "../../../lts/serializers/dist/glTF/2.0/Extensions/KHR_materials_specular.js":
787
+ /*!***********************************************************************************!*\
788
+ !*** ../../../lts/serializers/dist/glTF/2.0/Extensions/KHR_materials_specular.js ***!
789
+ \***********************************************************************************/
790
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
791
+
792
+ __webpack_require__.r(__webpack_exports__);
793
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
794
+ /* harmony export */ "KHR_materials_specular": () => (/* binding */ KHR_materials_specular)
795
+ /* harmony export */ });
796
+ /* harmony import */ var _glTFExporter__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../glTFExporter */ "../../../lts/serializers/dist/glTF/2.0/glTFExporter.js");
797
+ /* harmony import */ var core_Materials_PBR_pbrMaterial__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! core/Materials/PBR/pbrMaterial */ "core/Maths/math.vector");
798
+ /* harmony import */ var core_Materials_PBR_pbrMaterial__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(core_Materials_PBR_pbrMaterial__WEBPACK_IMPORTED_MODULE_1__);
799
+
800
+
801
+ var NAME = "KHR_materials_specular";
802
+ /**
803
+ * [Specification](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Khronos/KHR_materials_specular/README.md)
804
+ */
805
+ // eslint-disable-next-line @typescript-eslint/naming-convention
806
+ var KHR_materials_specular = /** @class */ (function () {
807
+ function KHR_materials_specular(exporter) {
808
+ /** Name of this extension */
809
+ this.name = NAME;
810
+ /** Defines whether this extension is enabled */
811
+ this.enabled = true;
812
+ /** Defines whether this extension is required */
813
+ this.required = false;
814
+ this._wasUsed = false;
815
+ this._exporter = exporter;
816
+ }
817
+ KHR_materials_specular.prototype.dispose = function () { };
818
+ Object.defineProperty(KHR_materials_specular.prototype, "wasUsed", {
819
+ /** @hidden */
820
+ get: function () {
821
+ return this._wasUsed;
822
+ },
823
+ enumerable: false,
824
+ configurable: true
825
+ });
826
+ KHR_materials_specular.prototype.postExportMaterialAdditionalTextures = function (context, node, babylonMaterial) {
827
+ var additionalTextures = [];
828
+ if (babylonMaterial instanceof core_Materials_PBR_pbrMaterial__WEBPACK_IMPORTED_MODULE_1__.PBRMaterial) {
829
+ if (this._isExtensionEnabled(babylonMaterial)) {
830
+ if (babylonMaterial.metallicReflectanceTexture) {
831
+ additionalTextures.push(babylonMaterial.metallicReflectanceTexture);
832
+ }
833
+ if (babylonMaterial.reflectanceTexture) {
834
+ additionalTextures.push(babylonMaterial.reflectanceTexture);
835
+ }
836
+ return additionalTextures;
837
+ }
838
+ }
839
+ return additionalTextures;
840
+ };
841
+ KHR_materials_specular.prototype._isExtensionEnabled = function (mat) {
842
+ return ((mat.metallicF0Factor != undefined && mat.metallicF0Factor != 1.0) ||
843
+ (mat.metallicReflectanceColor != undefined && !mat.metallicReflectanceColor.equalsFloats(1.0, 1.0, 1.0)) ||
844
+ this._hasTexturesExtension(mat));
845
+ };
846
+ KHR_materials_specular.prototype._hasTexturesExtension = function (mat) {
847
+ return mat.metallicReflectanceTexture != null || mat.reflectanceTexture != null;
848
+ };
849
+ KHR_materials_specular.prototype.postExportMaterialAsync = function (context, node, babylonMaterial) {
850
+ var _this = this;
851
+ return new Promise(function (resolve) {
852
+ var _a, _b;
853
+ if (babylonMaterial instanceof core_Materials_PBR_pbrMaterial__WEBPACK_IMPORTED_MODULE_1__.PBRMaterial && _this._isExtensionEnabled(babylonMaterial)) {
854
+ _this._wasUsed = true;
855
+ node.extensions = node.extensions || {};
856
+ var metallicReflectanceTexture = (_a = _this._exporter._glTFMaterialExporter._getTextureInfo(babylonMaterial.metallicReflectanceTexture)) !== null && _a !== void 0 ? _a : undefined;
857
+ var reflectanceTexture = (_b = _this._exporter._glTFMaterialExporter._getTextureInfo(babylonMaterial.reflectanceTexture)) !== null && _b !== void 0 ? _b : undefined;
858
+ var metallicF0Factor = babylonMaterial.metallicF0Factor == 1.0 ? undefined : babylonMaterial.metallicF0Factor;
859
+ var metallicReflectanceColor = babylonMaterial.metallicReflectanceColor.equalsFloats(1.0, 1.0, 1.0)
860
+ ? undefined
861
+ : babylonMaterial.metallicReflectanceColor.asArray();
862
+ var specularInfo = {
863
+ specularFactor: metallicF0Factor,
864
+ specularTexture: metallicReflectanceTexture,
865
+ specularColorFactor: metallicReflectanceColor,
866
+ specularColorTexture: reflectanceTexture,
867
+ hasTextures: function () {
868
+ return _this._hasTexturesExtension(babylonMaterial);
869
+ },
870
+ };
871
+ node.extensions[NAME] = specularInfo;
872
+ }
873
+ resolve(node);
874
+ });
875
+ };
876
+ return KHR_materials_specular;
877
+ }());
878
+
879
+ _glTFExporter__WEBPACK_IMPORTED_MODULE_0__._Exporter.RegisterExtension(NAME, function (exporter) { return new KHR_materials_specular(exporter); });
880
+
881
+
693
882
  /***/ }),
694
883
 
695
884
  /***/ "../../../lts/serializers/dist/glTF/2.0/Extensions/KHR_materials_unlit.js":
@@ -925,15 +1114,21 @@ __webpack_require__.r(__webpack_exports__);
925
1114
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
926
1115
  /* harmony export */ "KHR_lights_punctual": () => (/* reexport safe */ _KHR_lights_punctual__WEBPACK_IMPORTED_MODULE_1__.KHR_lights_punctual),
927
1116
  /* harmony export */ "KHR_materials_clearcoat": () => (/* reexport safe */ _KHR_materials_clearcoat__WEBPACK_IMPORTED_MODULE_2__.KHR_materials_clearcoat),
928
- /* harmony export */ "KHR_materials_sheen": () => (/* reexport safe */ _KHR_materials_sheen__WEBPACK_IMPORTED_MODULE_3__.KHR_materials_sheen),
929
- /* harmony export */ "KHR_materials_unlit": () => (/* reexport safe */ _KHR_materials_unlit__WEBPACK_IMPORTED_MODULE_4__.KHR_materials_unlit),
1117
+ /* harmony export */ "KHR_materials_iridescence": () => (/* reexport safe */ _KHR_materials_iridescence__WEBPACK_IMPORTED_MODULE_3__.KHR_materials_iridescence),
1118
+ /* harmony export */ "KHR_materials_sheen": () => (/* reexport safe */ _KHR_materials_sheen__WEBPACK_IMPORTED_MODULE_4__.KHR_materials_sheen),
1119
+ /* harmony export */ "KHR_materials_specular": () => (/* reexport safe */ _KHR_materials_specular__WEBPACK_IMPORTED_MODULE_6__.KHR_materials_specular),
1120
+ /* harmony export */ "KHR_materials_unlit": () => (/* reexport safe */ _KHR_materials_unlit__WEBPACK_IMPORTED_MODULE_5__.KHR_materials_unlit),
930
1121
  /* harmony export */ "KHR_texture_transform": () => (/* reexport safe */ _KHR_texture_transform__WEBPACK_IMPORTED_MODULE_0__.KHR_texture_transform)
931
1122
  /* harmony export */ });
932
1123
  /* harmony import */ var _KHR_texture_transform__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./KHR_texture_transform */ "../../../lts/serializers/dist/glTF/2.0/Extensions/KHR_texture_transform.js");
933
1124
  /* harmony import */ var _KHR_lights_punctual__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./KHR_lights_punctual */ "../../../lts/serializers/dist/glTF/2.0/Extensions/KHR_lights_punctual.js");
934
1125
  /* harmony import */ var _KHR_materials_clearcoat__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./KHR_materials_clearcoat */ "../../../lts/serializers/dist/glTF/2.0/Extensions/KHR_materials_clearcoat.js");
935
- /* harmony import */ var _KHR_materials_sheen__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./KHR_materials_sheen */ "../../../lts/serializers/dist/glTF/2.0/Extensions/KHR_materials_sheen.js");
936
- /* harmony import */ var _KHR_materials_unlit__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./KHR_materials_unlit */ "../../../lts/serializers/dist/glTF/2.0/Extensions/KHR_materials_unlit.js");
1126
+ /* harmony import */ var _KHR_materials_iridescence__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./KHR_materials_iridescence */ "../../../lts/serializers/dist/glTF/2.0/Extensions/KHR_materials_iridescence.js");
1127
+ /* harmony import */ var _KHR_materials_sheen__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./KHR_materials_sheen */ "../../../lts/serializers/dist/glTF/2.0/Extensions/KHR_materials_sheen.js");
1128
+ /* harmony import */ var _KHR_materials_unlit__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./KHR_materials_unlit */ "../../../lts/serializers/dist/glTF/2.0/Extensions/KHR_materials_unlit.js");
1129
+ /* harmony import */ var _KHR_materials_specular__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./KHR_materials_specular */ "../../../lts/serializers/dist/glTF/2.0/Extensions/KHR_materials_specular.js");
1130
+
1131
+
937
1132
 
938
1133
 
939
1134
 
@@ -4112,7 +4307,7 @@ var _GLTFMaterialExporter = /** @class */ (function () {
4112
4307
  var glTFMaterial = { name: babylonStandardMaterial.name };
4113
4308
  if (babylonStandardMaterial.backFaceCulling != null && !babylonStandardMaterial.backFaceCulling) {
4114
4309
  if (!babylonStandardMaterial.twoSidedLighting) {
4115
- core_Maths_math_vector__WEBPACK_IMPORTED_MODULE_1__.Tools.Warn(babylonStandardMaterial.name + ": Back-face culling enabled and two-sided lighting disabled is not supported in glTF.");
4310
+ core_Maths_math_vector__WEBPACK_IMPORTED_MODULE_1__.Tools.Warn(babylonStandardMaterial.name + ": Back-face culling disabled and two-sided lighting disabled is not supported in glTF.");
4116
4311
  }
4117
4312
  glTFMaterial.doubleSided = true;
4118
4313
  }
@@ -4195,82 +4390,6 @@ var _GLTFMaterialExporter = /** @class */ (function () {
4195
4390
  });
4196
4391
  });
4197
4392
  };
4198
- /**
4199
- * Converts a Babylon PBR Metallic Roughness Material to a glTF Material
4200
- * @param babylonPBRMetalRoughMaterial BJS PBR Metallic Roughness Material
4201
- * @param mimeType mime type to use for the textures
4202
- * @param hasTextureCoords specifies if texture coordinates are present on the submesh to determine if textures should be applied
4203
- */
4204
- _GLTFMaterialExporter.prototype._convertPBRMetallicRoughnessMaterialAsync = function (babylonPBRMetalRoughMaterial, mimeType, hasTextureCoords) {
4205
- var materialMap = this._exporter._materialMap;
4206
- var materials = this._exporter._materials;
4207
- var promises = [];
4208
- var glTFPbrMetallicRoughness = {};
4209
- if (babylonPBRMetalRoughMaterial.baseColor) {
4210
- glTFPbrMetallicRoughness.baseColorFactor = [
4211
- babylonPBRMetalRoughMaterial.baseColor.r,
4212
- babylonPBRMetalRoughMaterial.baseColor.g,
4213
- babylonPBRMetalRoughMaterial.baseColor.b,
4214
- babylonPBRMetalRoughMaterial.alpha,
4215
- ];
4216
- }
4217
- if (babylonPBRMetalRoughMaterial.metallic != null && babylonPBRMetalRoughMaterial.metallic !== 1) {
4218
- glTFPbrMetallicRoughness.metallicFactor = babylonPBRMetalRoughMaterial.metallic;
4219
- }
4220
- if (babylonPBRMetalRoughMaterial.roughness != null && babylonPBRMetalRoughMaterial.roughness !== 1) {
4221
- glTFPbrMetallicRoughness.roughnessFactor = babylonPBRMetalRoughMaterial.roughness;
4222
- }
4223
- var glTFMaterial = {
4224
- name: babylonPBRMetalRoughMaterial.name,
4225
- };
4226
- if (babylonPBRMetalRoughMaterial.doubleSided) {
4227
- glTFMaterial.doubleSided = babylonPBRMetalRoughMaterial.doubleSided;
4228
- }
4229
- _GLTFMaterialExporter._SetAlphaMode(glTFMaterial, babylonPBRMetalRoughMaterial);
4230
- if (hasTextureCoords) {
4231
- if (babylonPBRMetalRoughMaterial.baseTexture != null) {
4232
- promises.push(this._exportTextureAsync(babylonPBRMetalRoughMaterial.baseTexture, mimeType).then(function (glTFTexture) {
4233
- if (glTFTexture) {
4234
- glTFPbrMetallicRoughness.baseColorTexture = glTFTexture;
4235
- }
4236
- }));
4237
- }
4238
- if (babylonPBRMetalRoughMaterial.normalTexture) {
4239
- promises.push(this._exportTextureAsync(babylonPBRMetalRoughMaterial.normalTexture, mimeType).then(function (glTFTexture) {
4240
- if (glTFTexture) {
4241
- glTFMaterial.normalTexture = glTFTexture;
4242
- if (babylonPBRMetalRoughMaterial.normalTexture.level !== 1) {
4243
- glTFMaterial.normalTexture.scale = babylonPBRMetalRoughMaterial.normalTexture.level;
4244
- }
4245
- }
4246
- }));
4247
- }
4248
- if (babylonPBRMetalRoughMaterial.occlusionTexture) {
4249
- promises.push(this._exportTextureAsync(babylonPBRMetalRoughMaterial.occlusionTexture, mimeType).then(function (glTFTexture) {
4250
- if (glTFTexture) {
4251
- glTFMaterial.occlusionTexture = glTFTexture;
4252
- if (babylonPBRMetalRoughMaterial.occlusionStrength != null) {
4253
- glTFMaterial.occlusionTexture.strength = babylonPBRMetalRoughMaterial.occlusionStrength;
4254
- }
4255
- }
4256
- }));
4257
- }
4258
- if (babylonPBRMetalRoughMaterial.emissiveTexture) {
4259
- promises.push(this._exportTextureAsync(babylonPBRMetalRoughMaterial.emissiveTexture, mimeType).then(function (glTFTexture) {
4260
- if (glTFTexture) {
4261
- glTFMaterial.emissiveTexture = glTFTexture;
4262
- }
4263
- }));
4264
- }
4265
- }
4266
- if (_GLTFMaterialExporter._FuzzyEquals(babylonPBRMetalRoughMaterial.emissiveColor, core_Maths_math_vector__WEBPACK_IMPORTED_MODULE_1__.Color3.Black(), _GLTFMaterialExporter._Epsilon)) {
4267
- glTFMaterial.emissiveFactor = babylonPBRMetalRoughMaterial.emissiveColor.asArray();
4268
- }
4269
- glTFMaterial.pbrMetallicRoughness = glTFPbrMetallicRoughness;
4270
- materials.push(glTFMaterial);
4271
- materialMap[babylonPBRMetalRoughMaterial.uniqueId] = materials.length - 1;
4272
- return this._finishMaterial(promises, glTFMaterial, babylonPBRMetalRoughMaterial, mimeType);
4273
- };
4274
4393
  /**
4275
4394
  * Converts an image typed array buffer to a base64 image
4276
4395
  * @param buffer typed array buffer
@@ -4799,7 +4918,7 @@ var _GLTFMaterialExporter = /** @class */ (function () {
4799
4918
  }
4800
4919
  if (babylonPBRMaterial.backFaceCulling != null && !babylonPBRMaterial.backFaceCulling) {
4801
4920
  if (!babylonPBRMaterial._twoSidedLighting) {
4802
- core_Maths_math_vector__WEBPACK_IMPORTED_MODULE_1__.Tools.Warn(babylonPBRMaterial.name + ": Back-face culling enabled and two-sided lighting disabled is not supported in glTF.");
4921
+ core_Maths_math_vector__WEBPACK_IMPORTED_MODULE_1__.Tools.Warn(babylonPBRMaterial.name + ": Back-face culling disabled and two-sided lighting disabled is not supported in glTF.");
4803
4922
  }
4804
4923
  glTFMaterial.doubleSided = true;
4805
4924
  }
@@ -5324,7 +5443,9 @@ __webpack_require__.r(__webpack_exports__);
5324
5443
  /* harmony export */ "GLTFData": () => (/* reexport safe */ _glTFData__WEBPACK_IMPORTED_MODULE_1__.GLTFData),
5325
5444
  /* harmony export */ "KHR_lights_punctual": () => (/* reexport safe */ _Extensions_index__WEBPACK_IMPORTED_MODULE_7__.KHR_lights_punctual),
5326
5445
  /* harmony export */ "KHR_materials_clearcoat": () => (/* reexport safe */ _Extensions_index__WEBPACK_IMPORTED_MODULE_7__.KHR_materials_clearcoat),
5446
+ /* harmony export */ "KHR_materials_iridescence": () => (/* reexport safe */ _Extensions_index__WEBPACK_IMPORTED_MODULE_7__.KHR_materials_iridescence),
5327
5447
  /* harmony export */ "KHR_materials_sheen": () => (/* reexport safe */ _Extensions_index__WEBPACK_IMPORTED_MODULE_7__.KHR_materials_sheen),
5448
+ /* harmony export */ "KHR_materials_specular": () => (/* reexport safe */ _Extensions_index__WEBPACK_IMPORTED_MODULE_7__.KHR_materials_specular),
5328
5449
  /* harmony export */ "KHR_materials_unlit": () => (/* reexport safe */ _Extensions_index__WEBPACK_IMPORTED_MODULE_7__.KHR_materials_unlit),
5329
5450
  /* harmony export */ "KHR_texture_transform": () => (/* reexport safe */ _Extensions_index__WEBPACK_IMPORTED_MODULE_7__.KHR_texture_transform),
5330
5451
  /* harmony export */ "_BinaryWriter": () => (/* reexport safe */ _glTFExporter__WEBPACK_IMPORTED_MODULE_2__._BinaryWriter),
@@ -5408,7 +5529,9 @@ __webpack_require__.r(__webpack_exports__);
5408
5529
  /* harmony export */ "GLTFData": () => (/* reexport safe */ _glTF_2_0_index__WEBPACK_IMPORTED_MODULE_4__.GLTFData),
5409
5530
  /* harmony export */ "KHR_lights_punctual": () => (/* reexport safe */ _glTF_2_0_index__WEBPACK_IMPORTED_MODULE_4__.KHR_lights_punctual),
5410
5531
  /* harmony export */ "KHR_materials_clearcoat": () => (/* reexport safe */ _glTF_2_0_index__WEBPACK_IMPORTED_MODULE_4__.KHR_materials_clearcoat),
5532
+ /* harmony export */ "KHR_materials_iridescence": () => (/* reexport safe */ _glTF_2_0_index__WEBPACK_IMPORTED_MODULE_4__.KHR_materials_iridescence),
5411
5533
  /* harmony export */ "KHR_materials_sheen": () => (/* reexport safe */ _glTF_2_0_index__WEBPACK_IMPORTED_MODULE_4__.KHR_materials_sheen),
5534
+ /* harmony export */ "KHR_materials_specular": () => (/* reexport safe */ _glTF_2_0_index__WEBPACK_IMPORTED_MODULE_4__.KHR_materials_specular),
5412
5535
  /* harmony export */ "KHR_materials_unlit": () => (/* reexport safe */ _glTF_2_0_index__WEBPACK_IMPORTED_MODULE_4__.KHR_materials_unlit),
5413
5536
  /* harmony export */ "KHR_texture_transform": () => (/* reexport safe */ _glTF_2_0_index__WEBPACK_IMPORTED_MODULE_4__.KHR_texture_transform),
5414
5537
  /* harmony export */ "_BinaryWriter": () => (/* reexport safe */ _glTF_2_0_index__WEBPACK_IMPORTED_MODULE_4__._BinaryWriter),