babylonjs-loaders 8.21.1 → 8.22.1
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 -7
- 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 -14
- package/package.json +3 -3
package/babylonjs.loaders.d.ts
CHANGED
|
@@ -3771,10 +3771,10 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
3771
3771
|
* These are the nodes from the specs:
|
|
3772
3772
|
### Math Nodes
|
|
3773
3773
|
1. **Constants**
|
|
3774
|
-
- E (`math/
|
|
3775
|
-
- Pi (`math/
|
|
3776
|
-
- Infinity (`math/
|
|
3777
|
-
- Not a Number (`math/
|
|
3774
|
+
- E (`math/E`) FlowGraphBlockNames.E
|
|
3775
|
+
- Pi (`math/Pi`) FlowGraphBlockNames.PI
|
|
3776
|
+
- Infinity (`math/Inf`) FlowGraphBlockNames.Inf
|
|
3777
|
+
- Not a Number (`math/NaN`) FlowGraphBlockNames.NaN
|
|
3778
3778
|
2. **Arithmetic Nodes**
|
|
3779
3779
|
- Absolute Value (`math/abs`) FlowGraphBlockNames.Abs
|
|
3780
3780
|
- Sign (`math/sign`) FlowGraphBlockNames.Sign
|
|
@@ -3801,8 +3801,8 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
3801
3801
|
- Greater Than (`math/gt`) FlowGraphBlockNames.GreaterThan
|
|
3802
3802
|
- Greater Than Or Equal To (`math/ge`) FlowGraphBlockNames.GreaterThanOrEqual
|
|
3803
3803
|
4. **Special Nodes**
|
|
3804
|
-
- Is Not a Number (`math/
|
|
3805
|
-
- Is Infinity (`math/
|
|
3804
|
+
- Is Not a Number (`math/isNaN`) FlowGraphBlockNames.IsNaN
|
|
3805
|
+
- Is Infinity (`math/isInf`) FlowGraphBlockNames.IsInfinity
|
|
3806
3806
|
- Select (`math/select`) FlowGraphBlockNames.Conditional
|
|
3807
3807
|
- Switch (`math/switch`) FlowGraphBlockNames.DataSwitch
|
|
3808
3808
|
- Random (`math/random`) FlowGraphBlockNames.Random
|
|
@@ -3843,7 +3843,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
3843
3843
|
- Transpose (`math/transpose`) FlowGraphBlockNames.Transpose
|
|
3844
3844
|
- Determinant (`math/determinant`) FlowGraphBlockNames.Determinant
|
|
3845
3845
|
- Inverse (`math/inverse`) FlowGraphBlockNames.InvertMatrix
|
|
3846
|
-
- Multiplication (`math/
|
|
3846
|
+
- Multiplication (`math/matMul`) FlowGraphBlockNames.MatrixMultiplication
|
|
3847
3847
|
- Compose (`math/matCompose`) FlowGraphBlockNames.MatrixCompose
|
|
3848
3848
|
- Decompose (`math/matDecompose`) FlowGraphBlockNames.MatrixDecompose
|
|
3849
3849
|
10. **Quaternion Nodes**
|