babylonjs-loaders 9.0.0 → 9.1.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.
- package/babylon.bvhFileLoader.js +1 -1
- package/babylon.bvhFileLoader.min.js +1 -1
- package/babylon.bvhFileLoader.min.js.map +1 -1
- package/babylon.glTF1FileLoader.js +1 -1
- package/babylon.glTF1FileLoader.min.js +1 -1
- package/babylon.glTF1FileLoader.min.js.map +1 -1
- package/babylon.glTF2FileLoader.js +1 -1
- package/babylon.glTF2FileLoader.min.js +1 -1
- package/babylon.glTF2FileLoader.min.js.map +1 -1
- package/babylon.glTFFileLoader.js +1 -1
- package/babylon.glTFFileLoader.min.js +1 -1
- package/babylon.glTFFileLoader.min.js.map +1 -1
- package/babylon.objFileLoader.js +1 -1
- package/babylon.objFileLoader.min.js +1 -1
- package/babylon.objFileLoader.min.js.map +1 -1
- package/babylon.stlFileLoader.js +1 -1
- package/babylon.stlFileLoader.min.js +1 -1
- package/babylon.stlFileLoader.min.js.map +1 -1
- package/babylonjs.loaders.d.ts +151 -131
- package/babylonjs.loaders.js +1 -1
- package/babylonjs.loaders.min.js +1 -1
- package/babylonjs.loaders.min.js.map +1 -1
- package/babylonjs.loaders.module.d.ts +215 -142
- package/config.json +1 -1
- package/package.json +4 -3
- package/readme.md +18 -22
- package/src/bvhFileLoader.ts +1 -1
- package/src/glTF1FileLoader.ts +1 -1
- package/src/glTF2FileLoader.ts +1 -1
- package/src/glTFFileLoader.ts +1 -1
- package/src/index.ts +1 -1
- package/src/objFileLoader.ts +1 -1
- package/src/stlFileLoader.ts +1 -1
- package/tsconfig.build.json +4 -4
- package/tsconfig.json +2 -2
- package/webpack.config.js +26 -27
|
@@ -15,6 +15,64 @@ declare module "babylonjs-loaders/dynamic" {
|
|
|
15
15
|
*/
|
|
16
16
|
export function registerBuiltInLoaders(): void;
|
|
17
17
|
|
|
18
|
+
}
|
|
19
|
+
declare module "babylonjs-loaders/legacy/legacy" {
|
|
20
|
+
export * from "babylonjs-loaders/index";
|
|
21
|
+
export * from "babylonjs-loaders/legacy/legacy-bvhFileLoader";
|
|
22
|
+
export * from "babylonjs-loaders/legacy/legacy-dynamic";
|
|
23
|
+
export * from "babylonjs-loaders/legacy/legacy-glTF";
|
|
24
|
+
export * from "babylonjs-loaders/legacy/legacy-glTF1";
|
|
25
|
+
export * from "babylonjs-loaders/legacy/legacy-glTF2";
|
|
26
|
+
export * from "babylonjs-loaders/legacy/legacy-objFileLoader";
|
|
27
|
+
export * from "babylonjs-loaders/legacy/legacy-stlFileLoader";
|
|
28
|
+
|
|
29
|
+
}
|
|
30
|
+
declare module "babylonjs-loaders/legacy/legacy-stlFileLoader" {
|
|
31
|
+
export * from "babylonjs-loaders/STL/index";
|
|
32
|
+
|
|
33
|
+
}
|
|
34
|
+
declare module "babylonjs-loaders/legacy/legacy-objFileLoader" {
|
|
35
|
+
export * from "babylonjs-loaders/OBJ/index";
|
|
36
|
+
|
|
37
|
+
}
|
|
38
|
+
declare module "babylonjs-loaders/legacy/legacy-glTFFileLoader" {
|
|
39
|
+
export * from "babylonjs-loaders/legacy/legacy-glTF";
|
|
40
|
+
export * from "babylonjs-loaders/legacy/legacy-glTF1";
|
|
41
|
+
export * from "babylonjs-loaders/legacy/legacy-glTF2";
|
|
42
|
+
|
|
43
|
+
}
|
|
44
|
+
declare module "babylonjs-loaders/legacy/legacy-glTF2FileLoader" {
|
|
45
|
+
export * from "babylonjs-loaders/legacy/legacy-glTF";
|
|
46
|
+
export * from "babylonjs-loaders/legacy/legacy-glTF2";
|
|
47
|
+
|
|
48
|
+
}
|
|
49
|
+
declare module "babylonjs-loaders/legacy/legacy-glTF2" {
|
|
50
|
+
import * as GLTF2 from "babylonjs-loaders/glTF/2.0/index";
|
|
51
|
+
export { GLTF2 };
|
|
52
|
+
|
|
53
|
+
}
|
|
54
|
+
declare module "babylonjs-loaders/legacy/legacy-glTF1FileLoader" {
|
|
55
|
+
export * from "babylonjs-loaders/legacy/legacy-glTF";
|
|
56
|
+
export * from "babylonjs-loaders/legacy/legacy-glTF1";
|
|
57
|
+
|
|
58
|
+
}
|
|
59
|
+
declare module "babylonjs-loaders/legacy/legacy-glTF1" {
|
|
60
|
+
import * as GLTF1 from "babylonjs-loaders/glTF/1.0/index";
|
|
61
|
+
export { GLTF1 };
|
|
62
|
+
|
|
63
|
+
}
|
|
64
|
+
declare module "babylonjs-loaders/legacy/legacy-glTF" {
|
|
65
|
+
export * from "babylonjs-loaders/glTF/glTFFileLoader";
|
|
66
|
+
export * from "babylonjs-loaders/glTF/glTFValidation";
|
|
67
|
+
|
|
68
|
+
}
|
|
69
|
+
declare module "babylonjs-loaders/legacy/legacy-dynamic" {
|
|
70
|
+
export * from "babylonjs-loaders/dynamic";
|
|
71
|
+
|
|
72
|
+
}
|
|
73
|
+
declare module "babylonjs-loaders/legacy/legacy-bvhFileLoader" {
|
|
74
|
+
export * from "babylonjs-loaders/BVH/index";
|
|
75
|
+
|
|
18
76
|
}
|
|
19
77
|
declare module "babylonjs-loaders/glTF/index" {
|
|
20
78
|
export * from "babylonjs-loaders/glTF/glTFFileLoader";
|
|
@@ -2921,8 +2979,7 @@ import { ISceneLoaderAsyncResult, ISceneLoaderProgressEvent } from "babylonjs/Lo
|
|
|
2921
2979
|
import { Scene } from "babylonjs/scene";
|
|
2922
2980
|
import { IProperty } from "babylonjs-gltf2interface";
|
|
2923
2981
|
import { IGLTF, ISampler, INode, IScene, IMesh, IAccessor, ICamera, IAnimation, IBuffer, IBufferView, IMaterial, ITextureInfo, ITexture, IImage, IMeshPrimitive, IArrayItem, IAnimationChannel } from "babylonjs-loaders/glTF/2.0/glTFLoaderInterfaces";
|
|
2924
|
-
import { IGLTFLoader, IGLTFLoaderData } from "babylonjs-loaders/glTF/glTFFileLoader";
|
|
2925
|
-
import { GLTFFileLoader } from "babylonjs-loaders/glTF/glTFFileLoader";
|
|
2982
|
+
import { IGLTFLoader, IGLTFLoaderData, GLTFFileLoader } from "babylonjs-loaders/glTF/glTFFileLoader";
|
|
2926
2983
|
import { IDataBuffer } from "babylonjs/Misc/dataReader";
|
|
2927
2984
|
import { Light } from "babylonjs/Lights/light";
|
|
2928
2985
|
import { BoundingInfo } from "babylonjs/Culling/boundingInfo";
|
|
@@ -3361,10 +3418,8 @@ export class GLTFLoader implements IGLTFLoader {
|
|
|
3361
3418
|
declare module "babylonjs-loaders/glTF/2.0/Extensions/objectModelMapping" {
|
|
3362
3419
|
import { TransformNode } from "babylonjs/Meshes/transformNode";
|
|
3363
3420
|
import { IAnimation, ICamera, IGLTF, IKHRLightsPunctual_Light, IEXTLightsArea_Light, IMaterial, IMesh, INode } from "babylonjs-loaders/glTF/2.0/glTFLoaderInterfaces";
|
|
3364
|
-
import { Vector3 } from "babylonjs/Maths/math.vector";
|
|
3365
|
-
import {
|
|
3366
|
-
import { Color3 } from "babylonjs/Maths/math.color";
|
|
3367
|
-
import { Color4 } from "babylonjs/Maths/math.color";
|
|
3421
|
+
import { Vector3, Matrix, Quaternion, Vector2 } from "babylonjs/Maths/math.vector";
|
|
3422
|
+
import { Color3, Color4 } from "babylonjs/Maths/math.color";
|
|
3368
3423
|
import { PBRMaterial } from "babylonjs/Materials/PBR/pbrMaterial";
|
|
3369
3424
|
import { Light } from "babylonjs/Lights/light";
|
|
3370
3425
|
import { Nullable } from "babylonjs/types";
|
|
@@ -5766,8 +5821,7 @@ export * from "babylonjs-loaders/glTF/2.0/Extensions/KHR_interactivity/flowGraph
|
|
|
5766
5821
|
|
|
5767
5822
|
}
|
|
5768
5823
|
declare module "babylonjs-loaders/glTF/2.0/Extensions/KHR_interactivity/flowGraphGLTFDataProvider" {
|
|
5769
|
-
import { IFlowGraphBlockConfiguration } from "babylonjs/FlowGraph/flowGraphBlock";
|
|
5770
|
-
import { FlowGraphBlock } from "babylonjs/FlowGraph/flowGraphBlock";
|
|
5824
|
+
import { IFlowGraphBlockConfiguration, FlowGraphBlock } from "babylonjs/FlowGraph/flowGraphBlock";
|
|
5771
5825
|
import { IGLTF } from "babylonjs-loaders/glTF/2.0/glTFLoaderInterfaces";
|
|
5772
5826
|
import { FlowGraphDataConnection } from "babylonjs/FlowGraph/flowGraphDataConnection";
|
|
5773
5827
|
import { AnimationGroup } from "babylonjs/Animations/animationGroup";
|
|
@@ -6184,8 +6238,7 @@ export class GLTFMaterialsCommonExtension extends GLTFLoaderExtension {
|
|
|
6184
6238
|
|
|
6185
6239
|
}
|
|
6186
6240
|
declare module "babylonjs-loaders/glTF/1.0/glTFLoaderUtils" {
|
|
6187
|
-
import { IGLTFTechniqueParameter, IGLTFAccessor, IGLTFRuntime, IGLTFBufferView } from "babylonjs-loaders/glTF/1.0/glTFLoaderInterfaces";
|
|
6188
|
-
import { EComponentType } from "babylonjs-loaders/glTF/1.0/glTFLoaderInterfaces";
|
|
6241
|
+
import { IGLTFTechniqueParameter, IGLTFAccessor, IGLTFRuntime, IGLTFBufferView, EComponentType } from "babylonjs-loaders/glTF/1.0/glTFLoaderInterfaces";
|
|
6189
6242
|
import { Effect } from "babylonjs/Materials/effect";
|
|
6190
6243
|
import { ShaderMaterial } from "babylonjs/Materials/shaderMaterial";
|
|
6191
6244
|
import { Node } from "babylonjs/node";
|
|
@@ -7775,11 +7828,11 @@ export class BVHFileLoader implements ISceneLoaderPluginAsync, ISceneLoaderPlugi
|
|
|
7775
7828
|
}
|
|
7776
7829
|
|
|
7777
7830
|
declare module "babylonjs-loaders" {
|
|
7778
|
-
export * from "babylonjs-loaders/
|
|
7831
|
+
export * from "babylonjs-loaders/legacy/legacy";
|
|
7779
7832
|
}
|
|
7780
7833
|
|
|
7781
7834
|
|
|
7782
|
-
declare
|
|
7835
|
+
declare namespace BABYLON {
|
|
7783
7836
|
|
|
7784
7837
|
|
|
7785
7838
|
/**
|
|
@@ -7790,6 +7843,26 @@ declare module BABYLON {
|
|
|
7790
7843
|
|
|
7791
7844
|
|
|
7792
7845
|
|
|
7846
|
+
|
|
7847
|
+
|
|
7848
|
+
|
|
7849
|
+
|
|
7850
|
+
|
|
7851
|
+
|
|
7852
|
+
|
|
7853
|
+
|
|
7854
|
+
|
|
7855
|
+
|
|
7856
|
+
|
|
7857
|
+
|
|
7858
|
+
|
|
7859
|
+
|
|
7860
|
+
|
|
7861
|
+
|
|
7862
|
+
|
|
7863
|
+
|
|
7864
|
+
|
|
7865
|
+
|
|
7793
7866
|
|
|
7794
7867
|
/**
|
|
7795
7868
|
* Configuration for glTF validation
|
|
@@ -8381,7 +8454,7 @@ declare module BABYLON {
|
|
|
8381
8454
|
|
|
8382
8455
|
|
|
8383
8456
|
}
|
|
8384
|
-
declare
|
|
8457
|
+
declare namespace BABYLON.GLTF2 {
|
|
8385
8458
|
/**
|
|
8386
8459
|
* Material Loading Adapter for PBR materials that provides a unified OpenPBR-like interface.
|
|
8387
8460
|
*/
|
|
@@ -9084,11 +9157,11 @@ declare module BABYLON.GLTF2 {
|
|
|
9084
9157
|
|
|
9085
9158
|
|
|
9086
9159
|
}
|
|
9087
|
-
declare
|
|
9160
|
+
declare namespace BABYLON {
|
|
9088
9161
|
|
|
9089
9162
|
|
|
9090
9163
|
}
|
|
9091
|
-
declare
|
|
9164
|
+
declare namespace BABYLON.GLTF2 {
|
|
9092
9165
|
/**
|
|
9093
9166
|
* Material Loading Adapter for OpenPBR materials that provides a unified OpenPBR-like interface.
|
|
9094
9167
|
*/
|
|
@@ -9760,11 +9833,11 @@ declare module BABYLON.GLTF2 {
|
|
|
9760
9833
|
|
|
9761
9834
|
|
|
9762
9835
|
}
|
|
9763
|
-
declare
|
|
9836
|
+
declare namespace BABYLON {
|
|
9764
9837
|
|
|
9765
9838
|
|
|
9766
9839
|
}
|
|
9767
|
-
declare
|
|
9840
|
+
declare namespace BABYLON.GLTF2 {
|
|
9768
9841
|
/**
|
|
9769
9842
|
* Interface for material loading adapters that provides a unified OpenPBR-like interface
|
|
9770
9843
|
* for both OpenPBR and PBR materials, eliminating conditional branches in extensions.
|
|
@@ -10128,20 +10201,20 @@ declare module BABYLON.GLTF2 {
|
|
|
10128
10201
|
|
|
10129
10202
|
|
|
10130
10203
|
}
|
|
10131
|
-
declare
|
|
10204
|
+
declare namespace BABYLON {
|
|
10132
10205
|
|
|
10133
10206
|
|
|
10134
10207
|
}
|
|
10135
|
-
declare
|
|
10208
|
+
declare namespace BABYLON.GLTF2 {
|
|
10136
10209
|
|
|
10137
10210
|
|
|
10138
10211
|
|
|
10139
10212
|
}
|
|
10140
|
-
declare
|
|
10213
|
+
declare namespace BABYLON {
|
|
10141
10214
|
|
|
10142
10215
|
|
|
10143
10216
|
}
|
|
10144
|
-
declare
|
|
10217
|
+
declare namespace BABYLON.GLTF2.Loader {
|
|
10145
10218
|
/**
|
|
10146
10219
|
* Loader interface with an index field.
|
|
10147
10220
|
*/
|
|
@@ -10398,11 +10471,11 @@ declare module BABYLON.GLTF2.Loader {
|
|
|
10398
10471
|
|
|
10399
10472
|
|
|
10400
10473
|
}
|
|
10401
|
-
declare
|
|
10474
|
+
declare namespace BABYLON {
|
|
10402
10475
|
|
|
10403
10476
|
|
|
10404
10477
|
}
|
|
10405
|
-
declare
|
|
10478
|
+
declare namespace BABYLON.GLTF2 {
|
|
10406
10479
|
interface IRegisteredGLTFExtension {
|
|
10407
10480
|
isGLTFExtension: boolean;
|
|
10408
10481
|
factory: GLTFExtensionFactory;
|
|
@@ -10429,11 +10502,11 @@ declare module BABYLON.GLTF2 {
|
|
|
10429
10502
|
|
|
10430
10503
|
|
|
10431
10504
|
}
|
|
10432
|
-
declare
|
|
10505
|
+
declare namespace BABYLON {
|
|
10433
10506
|
|
|
10434
10507
|
|
|
10435
10508
|
}
|
|
10436
|
-
declare
|
|
10509
|
+
declare namespace BABYLON.GLTF2 {
|
|
10437
10510
|
/**
|
|
10438
10511
|
* Interface for a glTF loader extension.
|
|
10439
10512
|
*/
|
|
@@ -10588,11 +10661,11 @@ declare module BABYLON.GLTF2 {
|
|
|
10588
10661
|
|
|
10589
10662
|
|
|
10590
10663
|
}
|
|
10591
|
-
declare
|
|
10664
|
+
declare namespace BABYLON {
|
|
10592
10665
|
|
|
10593
10666
|
|
|
10594
10667
|
}
|
|
10595
|
-
declare
|
|
10668
|
+
declare namespace BABYLON.GLTF2 {
|
|
10596
10669
|
/** @internal */
|
|
10597
10670
|
export type GetValueFn = (target: any, source: Float32Array, offset: number, scale: number) => any;
|
|
10598
10671
|
/** @internal */
|
|
@@ -10635,11 +10708,11 @@ declare module BABYLON.GLTF2 {
|
|
|
10635
10708
|
|
|
10636
10709
|
|
|
10637
10710
|
}
|
|
10638
|
-
declare
|
|
10711
|
+
declare namespace BABYLON {
|
|
10639
10712
|
|
|
10640
10713
|
|
|
10641
10714
|
}
|
|
10642
|
-
declare
|
|
10715
|
+
declare namespace BABYLON.GLTF2 {
|
|
10643
10716
|
interface IWithMetadata {
|
|
10644
10717
|
metadata: any;
|
|
10645
10718
|
_internalMetadata: any;
|
|
@@ -11067,11 +11140,11 @@ declare module BABYLON.GLTF2 {
|
|
|
11067
11140
|
|
|
11068
11141
|
|
|
11069
11142
|
}
|
|
11070
|
-
declare
|
|
11143
|
+
declare namespace BABYLON {
|
|
11071
11144
|
|
|
11072
11145
|
|
|
11073
11146
|
}
|
|
11074
|
-
declare
|
|
11147
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
11075
11148
|
export interface IGLTFObjectModelTree {
|
|
11076
11149
|
cameras: IGLTFObjectModelTreeCamerasObject;
|
|
11077
11150
|
nodes: IGLTFObjectModelTreeNodesObject;
|
|
@@ -11366,20 +11439,20 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
11366
11439
|
|
|
11367
11440
|
|
|
11368
11441
|
}
|
|
11369
|
-
declare
|
|
11442
|
+
declare namespace BABYLON {
|
|
11370
11443
|
|
|
11371
11444
|
|
|
11372
11445
|
}
|
|
11373
|
-
declare
|
|
11446
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
11374
11447
|
|
|
11375
11448
|
|
|
11376
11449
|
|
|
11377
11450
|
}
|
|
11378
|
-
declare
|
|
11451
|
+
declare namespace BABYLON {
|
|
11379
11452
|
|
|
11380
11453
|
|
|
11381
11454
|
}
|
|
11382
|
-
declare
|
|
11455
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
11383
11456
|
/**
|
|
11384
11457
|
* Adding an exception here will break traversing through the glTF object tree.
|
|
11385
11458
|
* This is used for properties that might not be in the glTF object model, but are optional and have a default value.
|
|
@@ -11426,11 +11499,11 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
11426
11499
|
|
|
11427
11500
|
|
|
11428
11501
|
}
|
|
11429
|
-
declare
|
|
11502
|
+
declare namespace BABYLON {
|
|
11430
11503
|
|
|
11431
11504
|
|
|
11432
11505
|
}
|
|
11433
|
-
declare
|
|
11506
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
11434
11507
|
/**
|
|
11435
11508
|
* Registers the built-in glTF 2.0 extension async factories, which dynamically imports and loads each glTF extension on demand (e.g. only when a glTF model uses the extension).
|
|
11436
11509
|
*/
|
|
@@ -11439,11 +11512,11 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
11439
11512
|
|
|
11440
11513
|
|
|
11441
11514
|
}
|
|
11442
|
-
declare
|
|
11515
|
+
declare namespace BABYLON {
|
|
11443
11516
|
|
|
11444
11517
|
|
|
11445
11518
|
}
|
|
11446
|
-
declare
|
|
11519
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
11447
11520
|
/** @internal */
|
|
11448
11521
|
export class MSFT_sRGBFactors implements BABYLON.GLTF2.IGLTFLoaderExtension {
|
|
11449
11522
|
/** @internal */
|
|
@@ -11462,7 +11535,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
11462
11535
|
|
|
11463
11536
|
|
|
11464
11537
|
}
|
|
11465
|
-
declare
|
|
11538
|
+
declare namespace BABYLON {
|
|
11466
11539
|
interface GLTFLoaderExtensionOptions {
|
|
11467
11540
|
/**
|
|
11468
11541
|
* Defines options for the MSFT_sRGBFactors extension.
|
|
@@ -11471,7 +11544,7 @@ declare module BABYLON {
|
|
|
11471
11544
|
}
|
|
11472
11545
|
|
|
11473
11546
|
}
|
|
11474
|
-
declare
|
|
11547
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
11475
11548
|
/** @internal */
|
|
11476
11549
|
export class MSFT_minecraftMesh implements BABYLON.GLTF2.IGLTFLoaderExtension {
|
|
11477
11550
|
/** @internal */
|
|
@@ -11490,7 +11563,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
11490
11563
|
|
|
11491
11564
|
|
|
11492
11565
|
}
|
|
11493
|
-
declare
|
|
11566
|
+
declare namespace BABYLON {
|
|
11494
11567
|
interface GLTFLoaderExtensionOptions {
|
|
11495
11568
|
/**
|
|
11496
11569
|
* Defines options for the MSFT_minecraftMesh extension.
|
|
@@ -11499,7 +11572,7 @@ declare module BABYLON {
|
|
|
11499
11572
|
}
|
|
11500
11573
|
|
|
11501
11574
|
}
|
|
11502
|
-
declare
|
|
11575
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
11503
11576
|
/**
|
|
11504
11577
|
* [Specification](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Vendor/MSFT_lod/README.md)
|
|
11505
11578
|
*/
|
|
@@ -11586,7 +11659,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
11586
11659
|
|
|
11587
11660
|
|
|
11588
11661
|
}
|
|
11589
|
-
declare
|
|
11662
|
+
declare namespace BABYLON {
|
|
11590
11663
|
interface GLTFLoaderExtensionOptions {
|
|
11591
11664
|
/**
|
|
11592
11665
|
* Defines options for the MSFT_lod extension.
|
|
@@ -11600,7 +11673,7 @@ declare module BABYLON {
|
|
|
11600
11673
|
}
|
|
11601
11674
|
|
|
11602
11675
|
}
|
|
11603
|
-
declare
|
|
11676
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
11604
11677
|
/**
|
|
11605
11678
|
* [Specification](https://github.com/najadojo/glTF/blob/MSFT_audio_emitter/extensions/2.0/Vendor/MSFT_audio_emitter/README.md)
|
|
11606
11679
|
* !!! Experimental Extension Subject to Changes !!!
|
|
@@ -11646,7 +11719,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
11646
11719
|
|
|
11647
11720
|
|
|
11648
11721
|
}
|
|
11649
|
-
declare
|
|
11722
|
+
declare namespace BABYLON {
|
|
11650
11723
|
interface GLTFLoaderExtensionOptions {
|
|
11651
11724
|
/**
|
|
11652
11725
|
* Defines options for the MSFT_audio_emitter extension.
|
|
@@ -11655,7 +11728,7 @@ declare module BABYLON {
|
|
|
11655
11728
|
}
|
|
11656
11729
|
|
|
11657
11730
|
}
|
|
11658
|
-
declare
|
|
11731
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
11659
11732
|
/**
|
|
11660
11733
|
* [Specification](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Khronos/KHR_xmp_json_ld/README.md)
|
|
11661
11734
|
* @since 5.0.0
|
|
@@ -11689,7 +11762,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
11689
11762
|
|
|
11690
11763
|
|
|
11691
11764
|
}
|
|
11692
|
-
declare
|
|
11765
|
+
declare namespace BABYLON {
|
|
11693
11766
|
interface GLTFLoaderExtensionOptions {
|
|
11694
11767
|
/**
|
|
11695
11768
|
* Defines options for the KHR_xmp_json_ld extension.
|
|
@@ -11698,7 +11771,7 @@ declare module BABYLON {
|
|
|
11698
11771
|
}
|
|
11699
11772
|
|
|
11700
11773
|
}
|
|
11701
|
-
declare
|
|
11774
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
11702
11775
|
/**
|
|
11703
11776
|
* [Specification](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Khronos/KHR_texture_transform/README.md)
|
|
11704
11777
|
*/
|
|
@@ -11727,7 +11800,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
11727
11800
|
|
|
11728
11801
|
|
|
11729
11802
|
}
|
|
11730
|
-
declare
|
|
11803
|
+
declare namespace BABYLON {
|
|
11731
11804
|
interface GLTFLoaderExtensionOptions {
|
|
11732
11805
|
/**
|
|
11733
11806
|
* Defines options for the KHR_texture_transform extension.
|
|
@@ -11736,7 +11809,7 @@ declare module BABYLON {
|
|
|
11736
11809
|
}
|
|
11737
11810
|
|
|
11738
11811
|
}
|
|
11739
|
-
declare
|
|
11812
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
11740
11813
|
/**
|
|
11741
11814
|
* [Specification](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Khronos/KHR_texture_basisu/README.md)
|
|
11742
11815
|
*/
|
|
@@ -11761,7 +11834,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
11761
11834
|
|
|
11762
11835
|
|
|
11763
11836
|
}
|
|
11764
|
-
declare
|
|
11837
|
+
declare namespace BABYLON {
|
|
11765
11838
|
interface GLTFLoaderExtensionOptions {
|
|
11766
11839
|
/**
|
|
11767
11840
|
* Defines options for the KHR_texture_basisu extension.
|
|
@@ -11770,7 +11843,7 @@ declare module BABYLON {
|
|
|
11770
11843
|
}
|
|
11771
11844
|
|
|
11772
11845
|
}
|
|
11773
|
-
declare
|
|
11846
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
11774
11847
|
/**
|
|
11775
11848
|
* Loader extension for KHR_node_visibility
|
|
11776
11849
|
*/
|
|
@@ -11795,7 +11868,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
11795
11868
|
|
|
11796
11869
|
|
|
11797
11870
|
}
|
|
11798
|
-
declare
|
|
11871
|
+
declare namespace BABYLON {
|
|
11799
11872
|
interface GLTFLoaderExtensionOptions {
|
|
11800
11873
|
/**
|
|
11801
11874
|
* Defines options for the KHR_node_visibility extension.
|
|
@@ -11804,7 +11877,7 @@ declare module BABYLON {
|
|
|
11804
11877
|
}
|
|
11805
11878
|
|
|
11806
11879
|
}
|
|
11807
|
-
declare
|
|
11880
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
11808
11881
|
/**
|
|
11809
11882
|
* Loader extension for KHR_selectability
|
|
11810
11883
|
*/
|
|
@@ -11829,7 +11902,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
11829
11902
|
|
|
11830
11903
|
|
|
11831
11904
|
}
|
|
11832
|
-
declare
|
|
11905
|
+
declare namespace BABYLON {
|
|
11833
11906
|
interface GLTFLoaderExtensionOptions {
|
|
11834
11907
|
/**
|
|
11835
11908
|
* Defines options for the KHR_selectability extension.
|
|
@@ -11838,7 +11911,7 @@ declare module BABYLON {
|
|
|
11838
11911
|
}
|
|
11839
11912
|
|
|
11840
11913
|
}
|
|
11841
|
-
declare
|
|
11914
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
11842
11915
|
/**
|
|
11843
11916
|
* Loader extension for KHR_node_hoverability
|
|
11844
11917
|
* @see https://github.com/KhronosGroup/glTF/pull/2426
|
|
@@ -11864,7 +11937,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
11864
11937
|
|
|
11865
11938
|
|
|
11866
11939
|
}
|
|
11867
|
-
declare
|
|
11940
|
+
declare namespace BABYLON {
|
|
11868
11941
|
interface GLTFLoaderExtensionOptions {
|
|
11869
11942
|
/**
|
|
11870
11943
|
* Defines options for the KHR_node_hoverability extension.
|
|
@@ -11873,7 +11946,7 @@ declare module BABYLON {
|
|
|
11873
11946
|
}
|
|
11874
11947
|
|
|
11875
11948
|
}
|
|
11876
|
-
declare
|
|
11949
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
11877
11950
|
/**
|
|
11878
11951
|
* [Specification](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Khronos/KHR_mesh_quantization/README.md)
|
|
11879
11952
|
*/
|
|
@@ -11897,7 +11970,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
11897
11970
|
|
|
11898
11971
|
|
|
11899
11972
|
}
|
|
11900
|
-
declare
|
|
11973
|
+
declare namespace BABYLON {
|
|
11901
11974
|
interface GLTFLoaderExtensionOptions {
|
|
11902
11975
|
/**
|
|
11903
11976
|
* Defines options for the KHR_mesh_quantization extension.
|
|
@@ -11906,7 +11979,7 @@ declare module BABYLON {
|
|
|
11906
11979
|
}
|
|
11907
11980
|
|
|
11908
11981
|
}
|
|
11909
|
-
declare
|
|
11982
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
11910
11983
|
/**
|
|
11911
11984
|
* TODO: In-progress specification
|
|
11912
11985
|
* [Specification](https://github.com/KhronosGroup/glTF/blob/7ea427ed55d44427e83c0a6d1c87068b1a4151c5/extensions/2.0/Khronos/KHR_materials_volume_scatter/README.md)
|
|
@@ -11943,7 +12016,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
11943
12016
|
|
|
11944
12017
|
|
|
11945
12018
|
}
|
|
11946
|
-
declare
|
|
12019
|
+
declare namespace BABYLON {
|
|
11947
12020
|
interface GLTFLoaderExtensionOptions {
|
|
11948
12021
|
/**
|
|
11949
12022
|
* Defines options for the KHR_materials_volume_scatter extension.
|
|
@@ -11952,7 +12025,7 @@ declare module BABYLON {
|
|
|
11952
12025
|
}
|
|
11953
12026
|
|
|
11954
12027
|
}
|
|
11955
|
-
declare
|
|
12028
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
11956
12029
|
/**
|
|
11957
12030
|
* [Specification](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Khronos/KHR_materials_volume/README.md)
|
|
11958
12031
|
* @since 5.0.0
|
|
@@ -11987,7 +12060,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
11987
12060
|
|
|
11988
12061
|
|
|
11989
12062
|
}
|
|
11990
|
-
declare
|
|
12063
|
+
declare namespace BABYLON {
|
|
11991
12064
|
interface GLTFLoaderExtensionOptions {
|
|
11992
12065
|
/**
|
|
11993
12066
|
* Defines options for the KHR_materials_volume extension.
|
|
@@ -11996,7 +12069,7 @@ declare module BABYLON {
|
|
|
11996
12069
|
}
|
|
11997
12070
|
|
|
11998
12071
|
}
|
|
11999
|
-
declare
|
|
12072
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
12000
12073
|
/**
|
|
12001
12074
|
* [Specification](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Khronos/KHR_materials_variants/README.md)
|
|
12002
12075
|
*/
|
|
@@ -12077,7 +12150,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
12077
12150
|
|
|
12078
12151
|
|
|
12079
12152
|
}
|
|
12080
|
-
declare
|
|
12153
|
+
declare namespace BABYLON {
|
|
12081
12154
|
type MaterialVariantsController = {
|
|
12082
12155
|
/**
|
|
12083
12156
|
* The list of available variant names for this asset.
|
|
@@ -12106,7 +12179,7 @@ declare module BABYLON {
|
|
|
12106
12179
|
}
|
|
12107
12180
|
|
|
12108
12181
|
}
|
|
12109
|
-
declare
|
|
12182
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
12110
12183
|
/**
|
|
12111
12184
|
* [Specification](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Khronos/KHR_materials_unlit/README.md)
|
|
12112
12185
|
*/
|
|
@@ -12140,7 +12213,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
12140
12213
|
|
|
12141
12214
|
|
|
12142
12215
|
}
|
|
12143
|
-
declare
|
|
12216
|
+
declare namespace BABYLON {
|
|
12144
12217
|
interface GLTFLoaderExtensionOptions {
|
|
12145
12218
|
/**
|
|
12146
12219
|
* Defines options for the KHR_materials_unlit extension.
|
|
@@ -12149,7 +12222,7 @@ declare module BABYLON {
|
|
|
12149
12222
|
}
|
|
12150
12223
|
|
|
12151
12224
|
}
|
|
12152
|
-
declare
|
|
12225
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
12153
12226
|
/**
|
|
12154
12227
|
* [Specification](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Khronos/KHR_materials_transmission/README.md)
|
|
12155
12228
|
*/
|
|
@@ -12183,7 +12256,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
12183
12256
|
|
|
12184
12257
|
|
|
12185
12258
|
}
|
|
12186
|
-
declare
|
|
12259
|
+
declare namespace BABYLON {
|
|
12187
12260
|
interface GLTFLoaderExtensionOptions {
|
|
12188
12261
|
/**
|
|
12189
12262
|
* Defines options for the KHR_materials_transmission extension.
|
|
@@ -12192,7 +12265,7 @@ declare module BABYLON {
|
|
|
12192
12265
|
}
|
|
12193
12266
|
|
|
12194
12267
|
}
|
|
12195
|
-
declare
|
|
12268
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
12196
12269
|
/**
|
|
12197
12270
|
* [Specification](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Khronos/KHR_materials_specular/README.md)
|
|
12198
12271
|
*/
|
|
@@ -12226,7 +12299,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
12226
12299
|
|
|
12227
12300
|
|
|
12228
12301
|
}
|
|
12229
|
-
declare
|
|
12302
|
+
declare namespace BABYLON {
|
|
12230
12303
|
interface GLTFLoaderExtensionOptions {
|
|
12231
12304
|
/**
|
|
12232
12305
|
* Defines options for the KHR_materials_specular extension.
|
|
@@ -12235,7 +12308,7 @@ declare module BABYLON {
|
|
|
12235
12308
|
}
|
|
12236
12309
|
|
|
12237
12310
|
}
|
|
12238
|
-
declare
|
|
12311
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
12239
12312
|
/**
|
|
12240
12313
|
* [Specification](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Khronos/KHR_materials_sheen/README.md)
|
|
12241
12314
|
* [Playground Sample](https://www.babylonjs-playground.com/frame.html#BNIZX6#4)
|
|
@@ -12270,7 +12343,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
12270
12343
|
|
|
12271
12344
|
|
|
12272
12345
|
}
|
|
12273
|
-
declare
|
|
12346
|
+
declare namespace BABYLON {
|
|
12274
12347
|
interface GLTFLoaderExtensionOptions {
|
|
12275
12348
|
/**
|
|
12276
12349
|
* Defines options for the KHR_materials_sheen extension.
|
|
@@ -12279,7 +12352,7 @@ declare module BABYLON {
|
|
|
12279
12352
|
}
|
|
12280
12353
|
|
|
12281
12354
|
}
|
|
12282
|
-
declare
|
|
12355
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
12283
12356
|
/**
|
|
12284
12357
|
* [Specification](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Archived/KHR_materials_pbrSpecularGlossiness/README.md)
|
|
12285
12358
|
*/
|
|
@@ -12313,7 +12386,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
12313
12386
|
|
|
12314
12387
|
|
|
12315
12388
|
}
|
|
12316
|
-
declare
|
|
12389
|
+
declare namespace BABYLON {
|
|
12317
12390
|
interface GLTFLoaderExtensionOptions {
|
|
12318
12391
|
/**
|
|
12319
12392
|
* Defines options for the KHR_materials_pbrSpecularGlossiness extension.
|
|
@@ -12322,7 +12395,7 @@ declare module BABYLON {
|
|
|
12322
12395
|
}
|
|
12323
12396
|
|
|
12324
12397
|
}
|
|
12325
|
-
declare
|
|
12398
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
12326
12399
|
/**
|
|
12327
12400
|
* [Specification](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Khronos/KHR_materials_iridescence/README.md)
|
|
12328
12401
|
*/
|
|
@@ -12356,7 +12429,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
12356
12429
|
|
|
12357
12430
|
|
|
12358
12431
|
}
|
|
12359
|
-
declare
|
|
12432
|
+
declare namespace BABYLON {
|
|
12360
12433
|
interface GLTFLoaderExtensionOptions {
|
|
12361
12434
|
/**
|
|
12362
12435
|
* Defines options for the KHR_materials_iridescence extension.
|
|
@@ -12365,7 +12438,7 @@ declare module BABYLON {
|
|
|
12365
12438
|
}
|
|
12366
12439
|
|
|
12367
12440
|
}
|
|
12368
|
-
declare
|
|
12441
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
12369
12442
|
/**
|
|
12370
12443
|
* [Specification](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Khronos/KHR_materials_ior/README.md)
|
|
12371
12444
|
*/
|
|
@@ -12403,7 +12476,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
12403
12476
|
|
|
12404
12477
|
|
|
12405
12478
|
}
|
|
12406
|
-
declare
|
|
12479
|
+
declare namespace BABYLON {
|
|
12407
12480
|
interface GLTFLoaderExtensionOptions {
|
|
12408
12481
|
/**
|
|
12409
12482
|
* Defines options for the KHR_materials_ior extension.
|
|
@@ -12412,7 +12485,7 @@ declare module BABYLON {
|
|
|
12412
12485
|
}
|
|
12413
12486
|
|
|
12414
12487
|
}
|
|
12415
|
-
declare
|
|
12488
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
12416
12489
|
/**
|
|
12417
12490
|
* [Specification](https://github.com/KhronosGroup/glTF/blob/9734e44accd0dfb986ec5f376117aa00192745fe/extensions/2.0/Khronos/KHR_materials_fuzz/README.md)
|
|
12418
12491
|
* @experimental
|
|
@@ -12447,7 +12520,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
12447
12520
|
|
|
12448
12521
|
|
|
12449
12522
|
}
|
|
12450
|
-
declare
|
|
12523
|
+
declare namespace BABYLON {
|
|
12451
12524
|
interface GLTFLoaderExtensionOptions {
|
|
12452
12525
|
/**
|
|
12453
12526
|
* Defines options for the KHR_materials_fuzz extension.
|
|
@@ -12456,7 +12529,7 @@ declare module BABYLON {
|
|
|
12456
12529
|
}
|
|
12457
12530
|
|
|
12458
12531
|
}
|
|
12459
|
-
declare
|
|
12532
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
12460
12533
|
/**
|
|
12461
12534
|
* [Specification](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Khronos/KHR_materials_emissive_strength/README.md)
|
|
12462
12535
|
*/
|
|
@@ -12490,7 +12563,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
12490
12563
|
|
|
12491
12564
|
|
|
12492
12565
|
}
|
|
12493
|
-
declare
|
|
12566
|
+
declare namespace BABYLON {
|
|
12494
12567
|
interface GLTFLoaderExtensionOptions {
|
|
12495
12568
|
/**
|
|
12496
12569
|
* Defines options for the KHR_materials_emissive_strength extension.
|
|
@@ -12499,7 +12572,7 @@ declare module BABYLON {
|
|
|
12499
12572
|
}
|
|
12500
12573
|
|
|
12501
12574
|
}
|
|
12502
|
-
declare
|
|
12575
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
12503
12576
|
/**
|
|
12504
12577
|
* [Specification](https://github.com/KhronosGroup/glTF/blob/87bd64a7f5e23c84b6aef2e6082069583ed0ddb4/extensions/2.0/Khronos/KHR_materials_dispersion/README.md)
|
|
12505
12578
|
* @experimental
|
|
@@ -12534,7 +12607,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
12534
12607
|
|
|
12535
12608
|
|
|
12536
12609
|
}
|
|
12537
|
-
declare
|
|
12610
|
+
declare namespace BABYLON {
|
|
12538
12611
|
interface GLTFLoaderExtensionOptions {
|
|
12539
12612
|
/**
|
|
12540
12613
|
* Defines options for the KHR_materials_dispersion extension.
|
|
@@ -12543,7 +12616,7 @@ declare module BABYLON {
|
|
|
12543
12616
|
}
|
|
12544
12617
|
|
|
12545
12618
|
}
|
|
12546
|
-
declare
|
|
12619
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
12547
12620
|
/**
|
|
12548
12621
|
* [Proposed Specification](https://github.com/KhronosGroup/glTF/pull/1825)
|
|
12549
12622
|
* !!! Experimental Extension Subject to Changes !!!
|
|
@@ -12578,7 +12651,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
12578
12651
|
|
|
12579
12652
|
|
|
12580
12653
|
}
|
|
12581
|
-
declare
|
|
12654
|
+
declare namespace BABYLON {
|
|
12582
12655
|
interface GLTFLoaderExtensionOptions {
|
|
12583
12656
|
/**
|
|
12584
12657
|
* Defines options for the KHR_materials_diffuse_transmission extension.
|
|
@@ -12587,7 +12660,7 @@ declare module BABYLON {
|
|
|
12587
12660
|
}
|
|
12588
12661
|
|
|
12589
12662
|
}
|
|
12590
|
-
declare
|
|
12663
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
12591
12664
|
/**
|
|
12592
12665
|
* [Specification](https://github.com/KhronosGroup/glTF/blob/b102d2d2b40d44a8776800bb2bf85e218853c17d/extensions/2.0/Khronos/KHR_materials_diffuse_roughness/README.md)
|
|
12593
12666
|
* @experimental
|
|
@@ -12622,7 +12695,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
12622
12695
|
|
|
12623
12696
|
|
|
12624
12697
|
}
|
|
12625
|
-
declare
|
|
12698
|
+
declare namespace BABYLON {
|
|
12626
12699
|
interface GLTFLoaderExtensionOptions {
|
|
12627
12700
|
/**
|
|
12628
12701
|
* Defines options for the KHR_materials_diffuse_roughness extension.
|
|
@@ -12631,7 +12704,7 @@ declare module BABYLON {
|
|
|
12631
12704
|
}
|
|
12632
12705
|
|
|
12633
12706
|
}
|
|
12634
|
-
declare
|
|
12707
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
12635
12708
|
/**
|
|
12636
12709
|
* [Specification](https://github.com/KhronosGroup/glTF/blob/6cb2cb84b504c245c49cf2e9a8ae16d26f72ac97/extensions/2.0/Khronos/KHR_materials_coat/README.md)
|
|
12637
12710
|
* @experimental
|
|
@@ -12672,7 +12745,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
12672
12745
|
|
|
12673
12746
|
|
|
12674
12747
|
}
|
|
12675
|
-
declare
|
|
12748
|
+
declare namespace BABYLON {
|
|
12676
12749
|
interface GLTFLoaderExtensionOptions {
|
|
12677
12750
|
/**
|
|
12678
12751
|
* Defines options for the KHR_materials_coat extension.
|
|
@@ -12681,7 +12754,7 @@ declare module BABYLON {
|
|
|
12681
12754
|
}
|
|
12682
12755
|
|
|
12683
12756
|
}
|
|
12684
|
-
declare
|
|
12757
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
12685
12758
|
/**
|
|
12686
12759
|
* [Specification](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Khronos/KHR_materials_clearcoat/README.md)
|
|
12687
12760
|
* [Playground Sample](https://www.babylonjs-playground.com/frame.html#7F7PN6#8)
|
|
@@ -12716,7 +12789,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
12716
12789
|
|
|
12717
12790
|
|
|
12718
12791
|
}
|
|
12719
|
-
declare
|
|
12792
|
+
declare namespace BABYLON {
|
|
12720
12793
|
interface GLTFLoaderExtensionOptions {
|
|
12721
12794
|
/**
|
|
12722
12795
|
* Defines options for the KHR_materials_clearcoat extension.
|
|
@@ -12725,7 +12798,7 @@ declare module BABYLON {
|
|
|
12725
12798
|
}
|
|
12726
12799
|
|
|
12727
12800
|
}
|
|
12728
|
-
declare
|
|
12801
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
12729
12802
|
/**
|
|
12730
12803
|
* [Specification](https://github.com/KhronosGroup/glTF/tree/main/extensions/2.0/Khronos/KHR_materials_anisotropy)
|
|
12731
12804
|
*/
|
|
@@ -12759,7 +12832,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
12759
12832
|
|
|
12760
12833
|
|
|
12761
12834
|
}
|
|
12762
|
-
declare
|
|
12835
|
+
declare namespace BABYLON {
|
|
12763
12836
|
interface GLTFLoaderExtensionOptions {
|
|
12764
12837
|
/**
|
|
12765
12838
|
* Defines options for the KHR_materials_anisotropy extension.
|
|
@@ -12768,7 +12841,7 @@ declare module BABYLON {
|
|
|
12768
12841
|
}
|
|
12769
12842
|
|
|
12770
12843
|
}
|
|
12771
|
-
declare
|
|
12844
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
12772
12845
|
/**
|
|
12773
12846
|
* [Specification](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Khronos/KHR_lights_punctual/README.md)
|
|
12774
12847
|
*/
|
|
@@ -12801,7 +12874,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
12801
12874
|
|
|
12802
12875
|
|
|
12803
12876
|
}
|
|
12804
|
-
declare
|
|
12877
|
+
declare namespace BABYLON {
|
|
12805
12878
|
interface GLTFLoaderExtensionOptions {
|
|
12806
12879
|
/**
|
|
12807
12880
|
* Defines options for the KHR_lights_punctual extension.
|
|
@@ -12810,7 +12883,7 @@ declare module BABYLON {
|
|
|
12810
12883
|
}
|
|
12811
12884
|
|
|
12812
12885
|
}
|
|
12813
|
-
declare
|
|
12886
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
12814
12887
|
/**
|
|
12815
12888
|
* Loader extension for KHR_interactivity
|
|
12816
12889
|
*/
|
|
@@ -12842,7 +12915,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
12842
12915
|
|
|
12843
12916
|
|
|
12844
12917
|
}
|
|
12845
|
-
declare
|
|
12918
|
+
declare namespace BABYLON {
|
|
12846
12919
|
interface GLTFLoaderExtensionOptions {
|
|
12847
12920
|
/**
|
|
12848
12921
|
* Defines options for the KHR_interactivity extension.
|
|
@@ -12851,7 +12924,7 @@ declare module BABYLON {
|
|
|
12851
12924
|
}
|
|
12852
12925
|
|
|
12853
12926
|
}
|
|
12854
|
-
declare
|
|
12927
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
12855
12928
|
/**
|
|
12856
12929
|
* [Specification](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Khronos/KHR_draco_mesh_compression/README.md)
|
|
12857
12930
|
*/
|
|
@@ -12888,7 +12961,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
12888
12961
|
|
|
12889
12962
|
|
|
12890
12963
|
}
|
|
12891
|
-
declare
|
|
12964
|
+
declare namespace BABYLON {
|
|
12892
12965
|
interface GLTFLoaderExtensionOptions {
|
|
12893
12966
|
/**
|
|
12894
12967
|
* Defines options for the KHR_draco_mesh_compression extension.
|
|
@@ -12897,16 +12970,16 @@ declare module BABYLON {
|
|
|
12897
12970
|
}
|
|
12898
12971
|
|
|
12899
12972
|
}
|
|
12900
|
-
declare
|
|
12973
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
12901
12974
|
|
|
12902
12975
|
|
|
12903
12976
|
|
|
12904
12977
|
}
|
|
12905
|
-
declare
|
|
12978
|
+
declare namespace BABYLON {
|
|
12906
12979
|
|
|
12907
12980
|
|
|
12908
12981
|
}
|
|
12909
|
-
declare
|
|
12982
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
12910
12983
|
/**
|
|
12911
12984
|
* [Specification PR](https://github.com/KhronosGroup/glTF/pull/2147)
|
|
12912
12985
|
* !!! Experimental Extension Subject to Changes !!!
|
|
@@ -12943,7 +13016,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
12943
13016
|
|
|
12944
13017
|
|
|
12945
13018
|
}
|
|
12946
|
-
declare
|
|
13019
|
+
declare namespace BABYLON {
|
|
12947
13020
|
interface GLTFLoaderExtensionOptions {
|
|
12948
13021
|
/**
|
|
12949
13022
|
* Defines options for the KHR_animation_pointer extension.
|
|
@@ -12952,7 +13025,7 @@ declare module BABYLON {
|
|
|
12952
13025
|
}
|
|
12953
13026
|
|
|
12954
13027
|
}
|
|
12955
|
-
declare
|
|
13028
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
12956
13029
|
/**
|
|
12957
13030
|
* Store glTF extras (if present) in BJS objects' metadata
|
|
12958
13031
|
*/
|
|
@@ -12994,7 +13067,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
12994
13067
|
|
|
12995
13068
|
|
|
12996
13069
|
}
|
|
12997
|
-
declare
|
|
13070
|
+
declare namespace BABYLON {
|
|
12998
13071
|
interface GLTFLoaderExtensionOptions {
|
|
12999
13072
|
/**
|
|
13000
13073
|
* Defines options for the ExtrasAsMetadata extension.
|
|
@@ -13003,7 +13076,7 @@ declare module BABYLON {
|
|
|
13003
13076
|
}
|
|
13004
13077
|
|
|
13005
13078
|
}
|
|
13006
|
-
declare
|
|
13079
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
13007
13080
|
/**
|
|
13008
13081
|
* [Specification](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Vendor/EXT_texture_webp/README.md)
|
|
13009
13082
|
*/
|
|
@@ -13028,7 +13101,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
13028
13101
|
|
|
13029
13102
|
|
|
13030
13103
|
}
|
|
13031
|
-
declare
|
|
13104
|
+
declare namespace BABYLON {
|
|
13032
13105
|
interface GLTFLoaderExtensionOptions {
|
|
13033
13106
|
/**
|
|
13034
13107
|
* Defines options for the EXT_texture_webp extension.
|
|
@@ -13037,7 +13110,7 @@ declare module BABYLON {
|
|
|
13037
13110
|
}
|
|
13038
13111
|
|
|
13039
13112
|
}
|
|
13040
|
-
declare
|
|
13113
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
13041
13114
|
/**
|
|
13042
13115
|
* [glTF PR](https://github.com/KhronosGroup/glTF/pull/2235)
|
|
13043
13116
|
* [Specification](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Vendor/EXT_texture_avif/README.md)
|
|
@@ -13063,7 +13136,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
13063
13136
|
|
|
13064
13137
|
|
|
13065
13138
|
}
|
|
13066
|
-
declare
|
|
13139
|
+
declare namespace BABYLON {
|
|
13067
13140
|
interface GLTFLoaderExtensionOptions {
|
|
13068
13141
|
/**
|
|
13069
13142
|
* Defines options for the EXT_texture_avif extension.
|
|
@@ -13072,7 +13145,7 @@ declare module BABYLON {
|
|
|
13072
13145
|
}
|
|
13073
13146
|
|
|
13074
13147
|
}
|
|
13075
|
-
declare
|
|
13148
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
13076
13149
|
/**
|
|
13077
13150
|
* [Specification](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Vendor/EXT_meshopt_compression/README.md)
|
|
13078
13151
|
*
|
|
@@ -13104,7 +13177,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
13104
13177
|
|
|
13105
13178
|
|
|
13106
13179
|
}
|
|
13107
|
-
declare
|
|
13180
|
+
declare namespace BABYLON {
|
|
13108
13181
|
interface GLTFLoaderExtensionOptions {
|
|
13109
13182
|
/**
|
|
13110
13183
|
* Defines options for the EXT_meshopt_compression extension.
|
|
@@ -13113,7 +13186,7 @@ declare module BABYLON {
|
|
|
13113
13186
|
}
|
|
13114
13187
|
|
|
13115
13188
|
}
|
|
13116
|
-
declare
|
|
13189
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
13117
13190
|
/**
|
|
13118
13191
|
* [Specification](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Vendor/EXT_mesh_gpu_instancing/README.md)
|
|
13119
13192
|
* [Playground Sample](https://playground.babylonjs.com/#QFIGLW#9)
|
|
@@ -13143,7 +13216,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
13143
13216
|
|
|
13144
13217
|
|
|
13145
13218
|
}
|
|
13146
|
-
declare
|
|
13219
|
+
declare namespace BABYLON {
|
|
13147
13220
|
interface GLTFLoaderExtensionOptions {
|
|
13148
13221
|
/**
|
|
13149
13222
|
* Defines options for the EXT_mesh_gpu_instancing extension.
|
|
@@ -13152,7 +13225,7 @@ declare module BABYLON {
|
|
|
13152
13225
|
}
|
|
13153
13226
|
|
|
13154
13227
|
}
|
|
13155
|
-
declare
|
|
13228
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
13156
13229
|
/** @internal */
|
|
13157
13230
|
interface IEXTLightsImageBased_LightImageBased {
|
|
13158
13231
|
_babylonTexture?: BaseTexture;
|
|
@@ -13190,7 +13263,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
13190
13263
|
|
|
13191
13264
|
|
|
13192
13265
|
}
|
|
13193
|
-
declare
|
|
13266
|
+
declare namespace BABYLON {
|
|
13194
13267
|
interface GLTFLoaderExtensionOptions {
|
|
13195
13268
|
/**
|
|
13196
13269
|
* Defines options for the EXT_lights_image_based extension.
|
|
@@ -13199,7 +13272,7 @@ declare module BABYLON {
|
|
|
13199
13272
|
}
|
|
13200
13273
|
|
|
13201
13274
|
}
|
|
13202
|
-
declare
|
|
13275
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
13203
13276
|
/**
|
|
13204
13277
|
* [Specification](https://github.com/KhronosGroup/glTF/tree/main/extensions/2.0/Vendor/EXT_lights_ies)
|
|
13205
13278
|
*/
|
|
@@ -13232,7 +13305,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
13232
13305
|
|
|
13233
13306
|
|
|
13234
13307
|
}
|
|
13235
|
-
declare
|
|
13308
|
+
declare namespace BABYLON {
|
|
13236
13309
|
interface GLTFLoaderExtensionOptions {
|
|
13237
13310
|
/**
|
|
13238
13311
|
* Defines options for the EXT_lights_ies extension.
|
|
@@ -13241,7 +13314,7 @@ declare module BABYLON {
|
|
|
13241
13314
|
}
|
|
13242
13315
|
|
|
13243
13316
|
}
|
|
13244
|
-
declare
|
|
13317
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
13245
13318
|
/**
|
|
13246
13319
|
* [Specification](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Vendor/EXT_lights_area/README.md)
|
|
13247
13320
|
*/
|
|
@@ -13274,7 +13347,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
13274
13347
|
|
|
13275
13348
|
|
|
13276
13349
|
}
|
|
13277
|
-
declare
|
|
13350
|
+
declare namespace BABYLON {
|
|
13278
13351
|
interface GLTFLoaderExtensionOptions {
|
|
13279
13352
|
/**
|
|
13280
13353
|
* Defines options for the EXT_lights_area extension.
|
|
@@ -13283,7 +13356,7 @@ declare module BABYLON {
|
|
|
13283
13356
|
}
|
|
13284
13357
|
|
|
13285
13358
|
}
|
|
13286
|
-
declare
|
|
13359
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
13287
13360
|
export interface InteractivityEvent {
|
|
13288
13361
|
eventId: string;
|
|
13289
13362
|
eventData?: {
|
|
@@ -13353,20 +13426,20 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
13353
13426
|
|
|
13354
13427
|
|
|
13355
13428
|
}
|
|
13356
|
-
declare
|
|
13429
|
+
declare namespace BABYLON {
|
|
13357
13430
|
|
|
13358
13431
|
|
|
13359
13432
|
}
|
|
13360
|
-
declare
|
|
13433
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
13361
13434
|
|
|
13362
13435
|
|
|
13363
13436
|
|
|
13364
13437
|
}
|
|
13365
|
-
declare
|
|
13438
|
+
declare namespace BABYLON {
|
|
13366
13439
|
|
|
13367
13440
|
|
|
13368
13441
|
}
|
|
13369
|
-
declare
|
|
13442
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
13370
13443
|
/**
|
|
13371
13444
|
* a configuration interface for this block
|
|
13372
13445
|
*/
|
|
@@ -13398,11 +13471,11 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
13398
13471
|
|
|
13399
13472
|
|
|
13400
13473
|
}
|
|
13401
|
-
declare
|
|
13474
|
+
declare namespace BABYLON {
|
|
13402
13475
|
|
|
13403
13476
|
|
|
13404
13477
|
}
|
|
13405
|
-
declare
|
|
13478
|
+
declare namespace BABYLON.GLTF2.Loader.Extensions {
|
|
13406
13479
|
interface IGLTFToFlowGraphMappingObject {
|
|
13407
13480
|
/**
|
|
13408
13481
|
* The name of the property in the FlowGraph block.
|
|
@@ -13749,20 +13822,20 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
13749
13822
|
|
|
13750
13823
|
|
|
13751
13824
|
}
|
|
13752
|
-
declare
|
|
13825
|
+
declare namespace BABYLON {
|
|
13753
13826
|
|
|
13754
13827
|
|
|
13755
13828
|
}
|
|
13756
|
-
declare
|
|
13829
|
+
declare namespace BABYLON.GLTF1 {
|
|
13757
13830
|
|
|
13758
13831
|
|
|
13759
13832
|
|
|
13760
13833
|
}
|
|
13761
|
-
declare
|
|
13834
|
+
declare namespace BABYLON {
|
|
13762
13835
|
|
|
13763
13836
|
|
|
13764
13837
|
}
|
|
13765
|
-
declare
|
|
13838
|
+
declare namespace BABYLON.GLTF1 {
|
|
13766
13839
|
/**
|
|
13767
13840
|
* @internal
|
|
13768
13841
|
* @deprecated
|
|
@@ -13777,11 +13850,11 @@ declare module BABYLON.GLTF1 {
|
|
|
13777
13850
|
|
|
13778
13851
|
|
|
13779
13852
|
}
|
|
13780
|
-
declare
|
|
13853
|
+
declare namespace BABYLON {
|
|
13781
13854
|
|
|
13782
13855
|
|
|
13783
13856
|
}
|
|
13784
|
-
declare
|
|
13857
|
+
declare namespace BABYLON.GLTF1 {
|
|
13785
13858
|
/**
|
|
13786
13859
|
* Utils functions for GLTF
|
|
13787
13860
|
* @internal
|
|
@@ -13851,11 +13924,11 @@ declare module BABYLON.GLTF1 {
|
|
|
13851
13924
|
|
|
13852
13925
|
|
|
13853
13926
|
}
|
|
13854
|
-
declare
|
|
13927
|
+
declare namespace BABYLON {
|
|
13855
13928
|
|
|
13856
13929
|
|
|
13857
13930
|
}
|
|
13858
|
-
declare
|
|
13931
|
+
declare namespace BABYLON.GLTF1 {
|
|
13859
13932
|
/**
|
|
13860
13933
|
* Enums
|
|
13861
13934
|
* @internal
|
|
@@ -14265,11 +14338,11 @@ declare module BABYLON.GLTF1 {
|
|
|
14265
14338
|
|
|
14266
14339
|
|
|
14267
14340
|
}
|
|
14268
|
-
declare
|
|
14341
|
+
declare namespace BABYLON {
|
|
14269
14342
|
|
|
14270
14343
|
|
|
14271
14344
|
}
|
|
14272
|
-
declare
|
|
14345
|
+
declare namespace BABYLON.GLTF1 {
|
|
14273
14346
|
/**
|
|
14274
14347
|
* Implementation of the base glTF spec
|
|
14275
14348
|
* @internal
|
|
@@ -14410,11 +14483,11 @@ declare module BABYLON.GLTF1 {
|
|
|
14410
14483
|
|
|
14411
14484
|
|
|
14412
14485
|
}
|
|
14413
|
-
declare
|
|
14486
|
+
declare namespace BABYLON {
|
|
14414
14487
|
|
|
14415
14488
|
|
|
14416
14489
|
}
|
|
14417
|
-
declare
|
|
14490
|
+
declare namespace BABYLON.GLTF1 {
|
|
14418
14491
|
/**
|
|
14419
14492
|
* @internal
|
|
14420
14493
|
* @deprecated
|
|
@@ -14431,7 +14504,7 @@ declare module BABYLON.GLTF1 {
|
|
|
14431
14504
|
|
|
14432
14505
|
|
|
14433
14506
|
}
|
|
14434
|
-
declare
|
|
14507
|
+
declare namespace BABYLON {
|
|
14435
14508
|
|
|
14436
14509
|
export var STLFileLoaderMetadata: {
|
|
14437
14510
|
readonly name: "stl";
|