babylonjs-serializers 5.3.0 → 5.5.5
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.
- package/babylon.glTF2Serializer.js +288 -2
- package/babylon.glTF2Serializer.js.map +1 -1
- package/babylon.glTF2Serializer.min.js +1 -1
- package/babylon.glTF2Serializer.min.js.map +1 -1
- package/babylonjs.serializers.d.ts +66 -0
- package/babylonjs.serializers.js +297 -2
- package/babylonjs.serializers.js.map +1 -1
- package/babylonjs.serializers.min.js +1 -1
- package/babylonjs.serializers.min.js.map +1 -1
- package/babylonjs.serializers.module.d.ts +151 -0
- package/package.json +3 -3
|
@@ -6,7 +6,10 @@ export * from "babylonjs-serializers/glTF/2.0/Extensions/KHR_materials_clearcoat
|
|
|
6
6
|
export * from "babylonjs-serializers/glTF/2.0/Extensions/KHR_materials_iridescence";
|
|
7
7
|
export * from "babylonjs-serializers/glTF/2.0/Extensions/KHR_materials_sheen";
|
|
8
8
|
export * from "babylonjs-serializers/glTF/2.0/Extensions/KHR_materials_unlit";
|
|
9
|
+
export * from "babylonjs-serializers/glTF/2.0/Extensions/KHR_materials_ior";
|
|
9
10
|
export * from "babylonjs-serializers/glTF/2.0/Extensions/KHR_materials_specular";
|
|
11
|
+
export * from "babylonjs-serializers/glTF/2.0/Extensions/KHR_materials_volume";
|
|
12
|
+
export * from "babylonjs-serializers/glTF/2.0/Extensions/KHR_materials_transmission";
|
|
10
13
|
|
|
11
14
|
}
|
|
12
15
|
declare module "babylonjs-serializers/glTF/2.0/Extensions/KHR_lights_punctual" {
|
|
@@ -79,6 +82,30 @@ export class KHR_materials_clearcoat implements IGLTFExporterExtensionV2 {
|
|
|
79
82
|
postExportMaterialAsync?(context: string, node: IMaterial, babylonMaterial: Material): Promise<IMaterial>;
|
|
80
83
|
}
|
|
81
84
|
|
|
85
|
+
}
|
|
86
|
+
declare module "babylonjs-serializers/glTF/2.0/Extensions/KHR_materials_ior" {
|
|
87
|
+
import { IMaterial } from "babylonjs-gltf2interface";
|
|
88
|
+
import { IGLTFExporterExtensionV2 } from "babylonjs-serializers/glTF/2.0/glTFExporterExtension";
|
|
89
|
+
import { Material } from "babylonjs/Materials/material";
|
|
90
|
+
/**
|
|
91
|
+
* [Specification](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Khronos/KHR_materials_ior/README.md)
|
|
92
|
+
*/
|
|
93
|
+
export class KHR_materials_ior implements IGLTFExporterExtensionV2 {
|
|
94
|
+
/** Name of this extension */
|
|
95
|
+
readonly name: string;
|
|
96
|
+
/** Defines whether this extension is enabled */
|
|
97
|
+
enabled: boolean;
|
|
98
|
+
/** Defines whether this extension is required */
|
|
99
|
+
required: boolean;
|
|
100
|
+
private _wasUsed;
|
|
101
|
+
constructor();
|
|
102
|
+
dispose(): void;
|
|
103
|
+
/** @hidden */
|
|
104
|
+
get wasUsed(): boolean;
|
|
105
|
+
private _isExtensionEnabled;
|
|
106
|
+
postExportMaterialAsync?(context: string, node: IMaterial, babylonMaterial: Material): Promise<IMaterial>;
|
|
107
|
+
}
|
|
108
|
+
|
|
82
109
|
}
|
|
83
110
|
declare module "babylonjs-serializers/glTF/2.0/Extensions/KHR_materials_iridescence" {
|
|
84
111
|
import { IMaterial } from "babylonjs-gltf2interface";
|
|
@@ -162,6 +189,35 @@ export class KHR_materials_specular implements IGLTFExporterExtensionV2 {
|
|
|
162
189
|
postExportMaterialAsync?(context: string, node: IMaterial, babylonMaterial: Material): Promise<IMaterial>;
|
|
163
190
|
}
|
|
164
191
|
|
|
192
|
+
}
|
|
193
|
+
declare module "babylonjs-serializers/glTF/2.0/Extensions/KHR_materials_transmission" {
|
|
194
|
+
import { IMaterial } from "babylonjs-gltf2interface";
|
|
195
|
+
import { IGLTFExporterExtensionV2 } from "babylonjs-serializers/glTF/2.0/glTFExporterExtension";
|
|
196
|
+
import { _Exporter } from "babylonjs-serializers/glTF/2.0/glTFExporter";
|
|
197
|
+
import { Material } from "babylonjs/Materials/material";
|
|
198
|
+
import { BaseTexture } from "babylonjs/Materials/Textures/baseTexture";
|
|
199
|
+
/**
|
|
200
|
+
* [Specification](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Khronos/KHR_materials_transmission/README.md)
|
|
201
|
+
*/
|
|
202
|
+
export class KHR_materials_transmission implements IGLTFExporterExtensionV2 {
|
|
203
|
+
/** Name of this extension */
|
|
204
|
+
readonly name: string;
|
|
205
|
+
/** Defines whether this extension is enabled */
|
|
206
|
+
enabled: boolean;
|
|
207
|
+
/** Defines whether this extension is required */
|
|
208
|
+
required: boolean;
|
|
209
|
+
private _exporter;
|
|
210
|
+
private _wasUsed;
|
|
211
|
+
constructor(exporter: _Exporter);
|
|
212
|
+
dispose(): void;
|
|
213
|
+
/** @hidden */
|
|
214
|
+
get wasUsed(): boolean;
|
|
215
|
+
postExportMaterialAdditionalTextures?(context: string, node: IMaterial, babylonMaterial: Material): BaseTexture[];
|
|
216
|
+
private _isExtensionEnabled;
|
|
217
|
+
private _hasTexturesExtension;
|
|
218
|
+
postExportMaterialAsync?(context: string, node: IMaterial, babylonMaterial: Material): Promise<IMaterial>;
|
|
219
|
+
}
|
|
220
|
+
|
|
165
221
|
}
|
|
166
222
|
declare module "babylonjs-serializers/glTF/2.0/Extensions/KHR_materials_unlit" {
|
|
167
223
|
import { IMaterial } from "babylonjs-gltf2interface";
|
|
@@ -185,6 +241,35 @@ export class KHR_materials_unlit implements IGLTFExporterExtensionV2 {
|
|
|
185
241
|
postExportMaterialAsync?(context: string, node: IMaterial, babylonMaterial: Material): Promise<IMaterial>;
|
|
186
242
|
}
|
|
187
243
|
|
|
244
|
+
}
|
|
245
|
+
declare module "babylonjs-serializers/glTF/2.0/Extensions/KHR_materials_volume" {
|
|
246
|
+
import { IMaterial } from "babylonjs-gltf2interface";
|
|
247
|
+
import { IGLTFExporterExtensionV2 } from "babylonjs-serializers/glTF/2.0/glTFExporterExtension";
|
|
248
|
+
import { _Exporter } from "babylonjs-serializers/glTF/2.0/glTFExporter";
|
|
249
|
+
import { Material } from "babylonjs/Materials/material";
|
|
250
|
+
import { BaseTexture } from "babylonjs/Materials/Textures/baseTexture";
|
|
251
|
+
/**
|
|
252
|
+
* [Specification](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Khronos/KHR_materials_volume/README.md)
|
|
253
|
+
*/
|
|
254
|
+
export class KHR_materials_volume implements IGLTFExporterExtensionV2 {
|
|
255
|
+
/** Name of this extension */
|
|
256
|
+
readonly name: string;
|
|
257
|
+
/** Defines whether this extension is enabled */
|
|
258
|
+
enabled: boolean;
|
|
259
|
+
/** Defines whether this extension is required */
|
|
260
|
+
required: boolean;
|
|
261
|
+
private _exporter;
|
|
262
|
+
private _wasUsed;
|
|
263
|
+
constructor(exporter: _Exporter);
|
|
264
|
+
dispose(): void;
|
|
265
|
+
/** @hidden */
|
|
266
|
+
get wasUsed(): boolean;
|
|
267
|
+
postExportMaterialAdditionalTextures?(context: string, node: IMaterial, babylonMaterial: Material): BaseTexture[];
|
|
268
|
+
private _isExtensionEnabled;
|
|
269
|
+
private _hasTexturesExtension;
|
|
270
|
+
postExportMaterialAsync?(context: string, node: IMaterial, babylonMaterial: Material): Promise<IMaterial>;
|
|
271
|
+
}
|
|
272
|
+
|
|
188
273
|
}
|
|
189
274
|
declare module "babylonjs-serializers/glTF/2.0/Extensions/KHR_texture_transform" {
|
|
190
275
|
import { ITextureInfo } from "babylonjs-gltf2interface";
|
|
@@ -1547,6 +1632,26 @@ declare module BABYLON {
|
|
|
1547
1632
|
}
|
|
1548
1633
|
|
|
1549
1634
|
|
|
1635
|
+
/**
|
|
1636
|
+
* [Specification](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Khronos/KHR_materials_ior/README.md)
|
|
1637
|
+
*/
|
|
1638
|
+
export class KHR_materials_ior implements IGLTFExporterExtensionV2 {
|
|
1639
|
+
/** Name of this extension */
|
|
1640
|
+
readonly name = "KHR_materials_ior";
|
|
1641
|
+
/** Defines whether this extension is enabled */
|
|
1642
|
+
enabled: boolean;
|
|
1643
|
+
/** Defines whether this extension is required */
|
|
1644
|
+
required: boolean;
|
|
1645
|
+
private _wasUsed;
|
|
1646
|
+
constructor();
|
|
1647
|
+
dispose(): void;
|
|
1648
|
+
/** @hidden */
|
|
1649
|
+
get wasUsed(): boolean;
|
|
1650
|
+
private _isExtensionEnabled;
|
|
1651
|
+
postExportMaterialAsync?(context: string, node: BABYLON.GLTF2.IMaterial, babylonMaterial: Material): Promise<BABYLON.GLTF2.IMaterial>;
|
|
1652
|
+
}
|
|
1653
|
+
|
|
1654
|
+
|
|
1550
1655
|
/**
|
|
1551
1656
|
* @hidden
|
|
1552
1657
|
*/
|
|
@@ -1612,6 +1717,29 @@ declare module BABYLON {
|
|
|
1612
1717
|
}
|
|
1613
1718
|
|
|
1614
1719
|
|
|
1720
|
+
/**
|
|
1721
|
+
* [Specification](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Khronos/KHR_materials_transmission/README.md)
|
|
1722
|
+
*/
|
|
1723
|
+
export class KHR_materials_transmission implements IGLTFExporterExtensionV2 {
|
|
1724
|
+
/** Name of this extension */
|
|
1725
|
+
readonly name = "KHR_materials_transmission";
|
|
1726
|
+
/** Defines whether this extension is enabled */
|
|
1727
|
+
enabled: boolean;
|
|
1728
|
+
/** Defines whether this extension is required */
|
|
1729
|
+
required: boolean;
|
|
1730
|
+
private _exporter;
|
|
1731
|
+
private _wasUsed;
|
|
1732
|
+
constructor(exporter: _Exporter);
|
|
1733
|
+
dispose(): void;
|
|
1734
|
+
/** @hidden */
|
|
1735
|
+
get wasUsed(): boolean;
|
|
1736
|
+
postExportMaterialAdditionalTextures?(context: string, node: BABYLON.GLTF2.IMaterial, babylonMaterial: Material): BaseTexture[];
|
|
1737
|
+
private _isExtensionEnabled;
|
|
1738
|
+
private _hasTexturesExtension;
|
|
1739
|
+
postExportMaterialAsync?(context: string, node: BABYLON.GLTF2.IMaterial, babylonMaterial: Material): Promise<BABYLON.GLTF2.IMaterial>;
|
|
1740
|
+
}
|
|
1741
|
+
|
|
1742
|
+
|
|
1615
1743
|
/**
|
|
1616
1744
|
* @hidden
|
|
1617
1745
|
*/
|
|
@@ -1631,6 +1759,29 @@ declare module BABYLON {
|
|
|
1631
1759
|
}
|
|
1632
1760
|
|
|
1633
1761
|
|
|
1762
|
+
/**
|
|
1763
|
+
* [Specification](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Khronos/KHR_materials_volume/README.md)
|
|
1764
|
+
*/
|
|
1765
|
+
export class KHR_materials_volume implements IGLTFExporterExtensionV2 {
|
|
1766
|
+
/** Name of this extension */
|
|
1767
|
+
readonly name = "KHR_materials_volume";
|
|
1768
|
+
/** Defines whether this extension is enabled */
|
|
1769
|
+
enabled: boolean;
|
|
1770
|
+
/** Defines whether this extension is required */
|
|
1771
|
+
required: boolean;
|
|
1772
|
+
private _exporter;
|
|
1773
|
+
private _wasUsed;
|
|
1774
|
+
constructor(exporter: _Exporter);
|
|
1775
|
+
dispose(): void;
|
|
1776
|
+
/** @hidden */
|
|
1777
|
+
get wasUsed(): boolean;
|
|
1778
|
+
postExportMaterialAdditionalTextures?(context: string, node: BABYLON.GLTF2.IMaterial, babylonMaterial: Material): BaseTexture[];
|
|
1779
|
+
private _isExtensionEnabled;
|
|
1780
|
+
private _hasTexturesExtension;
|
|
1781
|
+
postExportMaterialAsync?(context: string, node: BABYLON.GLTF2.IMaterial, babylonMaterial: Material): Promise<BABYLON.GLTF2.IMaterial>;
|
|
1782
|
+
}
|
|
1783
|
+
|
|
1784
|
+
|
|
1634
1785
|
/**
|
|
1635
1786
|
* @hidden
|
|
1636
1787
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-serializers",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.5.5",
|
|
4
4
|
"main": "babylonjs.serializers.js",
|
|
5
5
|
"types": "babylonjs.serializers.module.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"clean": "rimraf dist && rimraf babylon*.*"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"babylonjs": "^5.
|
|
18
|
-
"babylonjs-gltf2interface": "^5.
|
|
17
|
+
"babylonjs": "^5.5.5",
|
|
18
|
+
"babylonjs-gltf2interface": "^5.5.5"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@dev/build-tools": "1.0.0",
|