babylonjs-loaders 8.42.0 → 8.43.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.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/babylonjs.loaders.d.ts +7 -8
- 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 +14 -16
- package/package.json +3 -3
package/babylonjs.loaders.d.ts
CHANGED
|
@@ -5351,7 +5351,7 @@ declare module BABYLON {
|
|
|
5351
5351
|
|
|
5352
5352
|
}
|
|
5353
5353
|
declare module BABYLON.GLTF2.Loader.Extensions {
|
|
5354
|
-
interface IGLTFToFlowGraphMappingObject
|
|
5354
|
+
interface IGLTFToFlowGraphMappingObject {
|
|
5355
5355
|
/**
|
|
5356
5356
|
* The name of the property in the FlowGraph block.
|
|
5357
5357
|
*/
|
|
@@ -5369,16 +5369,15 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
5369
5369
|
/**
|
|
5370
5370
|
* A function that transforms the data from the glTF to the FlowGraph block.
|
|
5371
5371
|
*/
|
|
5372
|
-
dataTransformer?: (data:
|
|
5372
|
+
dataTransformer?: (data: any, parser: BABYLON.GLTF2.Loader.Extensions.InteractivityGraphToFlowGraphParser) => any;
|
|
5373
5373
|
/**
|
|
5374
|
-
* If the property
|
|
5374
|
+
* If the property can contain multiple values.
|
|
5375
5375
|
*/
|
|
5376
|
-
|
|
5376
|
+
isArray?: boolean;
|
|
5377
5377
|
/**
|
|
5378
|
-
* If the property is
|
|
5379
|
-
* This will add an extra JsonPointerParser block to the graph.
|
|
5378
|
+
* If the property is in the options passed to the constructor of the block.
|
|
5380
5379
|
*/
|
|
5381
|
-
|
|
5380
|
+
inOptions?: boolean;
|
|
5382
5381
|
/**
|
|
5383
5382
|
* If the property is an index to a value.
|
|
5384
5383
|
* if defined this will be the name of the array to find the object in.
|
|
@@ -5393,7 +5392,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
5393
5392
|
/**
|
|
5394
5393
|
* Used in configuration values. If defined, this will be the default value, if no value is provided.
|
|
5395
5394
|
*/
|
|
5396
|
-
defaultValue?:
|
|
5395
|
+
defaultValue?: any;
|
|
5397
5396
|
}
|
|
5398
5397
|
export interface IGLTFToFlowGraphMapping {
|
|
5399
5398
|
/**
|