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
|
@@ -3937,10 +3937,10 @@ export {};
|
|
|
3937
3937
|
|
|
3938
3938
|
### Math Nodes
|
|
3939
3939
|
1. **Constants**
|
|
3940
|
-
- E (`math/
|
|
3941
|
-
- Pi (`math/
|
|
3942
|
-
- Infinity (`math/
|
|
3943
|
-
- Not a Number (`math/
|
|
3940
|
+
- E (`math/E`) FlowGraphBlockNames.E
|
|
3941
|
+
- Pi (`math/Pi`) FlowGraphBlockNames.PI
|
|
3942
|
+
- Infinity (`math/Inf`) FlowGraphBlockNames.Inf
|
|
3943
|
+
- Not a Number (`math/NaN`) FlowGraphBlockNames.NaN
|
|
3944
3944
|
2. **Arithmetic Nodes**
|
|
3945
3945
|
- Absolute Value (`math/abs`) FlowGraphBlockNames.Abs
|
|
3946
3946
|
- Sign (`math/sign`) FlowGraphBlockNames.Sign
|
|
@@ -3967,8 +3967,8 @@ export {};
|
|
|
3967
3967
|
- Greater Than (`math/gt`) FlowGraphBlockNames.GreaterThan
|
|
3968
3968
|
- Greater Than Or Equal To (`math/ge`) FlowGraphBlockNames.GreaterThanOrEqual
|
|
3969
3969
|
4. **Special Nodes**
|
|
3970
|
-
- Is Not a Number (`math/
|
|
3971
|
-
- Is Infinity (`math/
|
|
3970
|
+
- Is Not a Number (`math/isNaN`) FlowGraphBlockNames.IsNaN
|
|
3971
|
+
- Is Infinity (`math/isInf`) FlowGraphBlockNames.IsInfinity
|
|
3972
3972
|
- Select (`math/select`) FlowGraphBlockNames.Conditional
|
|
3973
3973
|
- Switch (`math/switch`) FlowGraphBlockNames.DataSwitch
|
|
3974
3974
|
- Random (`math/random`) FlowGraphBlockNames.Random
|
|
@@ -4009,7 +4009,7 @@ export {};
|
|
|
4009
4009
|
- Transpose (`math/transpose`) FlowGraphBlockNames.Transpose
|
|
4010
4010
|
- Determinant (`math/determinant`) FlowGraphBlockNames.Determinant
|
|
4011
4011
|
- Inverse (`math/inverse`) FlowGraphBlockNames.InvertMatrix
|
|
4012
|
-
- Multiplication (`math/
|
|
4012
|
+
- Multiplication (`math/matMul`) FlowGraphBlockNames.MatrixMultiplication
|
|
4013
4013
|
- Compose (`math/matCompose`) FlowGraphBlockNames.MatrixCompose
|
|
4014
4014
|
- Decompose (`math/matDecompose`) FlowGraphBlockNames.MatrixDecompose
|
|
4015
4015
|
10. **Quaternion Nodes**
|
|
@@ -9382,10 +9382,10 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
9382
9382
|
* These are the nodes from the specs:
|
|
9383
9383
|
### Math Nodes
|
|
9384
9384
|
1. **Constants**
|
|
9385
|
-
- E (`math/
|
|
9386
|
-
- Pi (`math/
|
|
9387
|
-
- Infinity (`math/
|
|
9388
|
-
- Not a Number (`math/
|
|
9385
|
+
- E (`math/E`) FlowGraphBlockNames.E
|
|
9386
|
+
- Pi (`math/Pi`) FlowGraphBlockNames.PI
|
|
9387
|
+
- Infinity (`math/Inf`) FlowGraphBlockNames.Inf
|
|
9388
|
+
- Not a Number (`math/NaN`) FlowGraphBlockNames.NaN
|
|
9389
9389
|
2. **Arithmetic Nodes**
|
|
9390
9390
|
- Absolute Value (`math/abs`) FlowGraphBlockNames.Abs
|
|
9391
9391
|
- Sign (`math/sign`) FlowGraphBlockNames.Sign
|
|
@@ -9412,8 +9412,8 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
9412
9412
|
- Greater Than (`math/gt`) FlowGraphBlockNames.GreaterThan
|
|
9413
9413
|
- Greater Than Or Equal To (`math/ge`) FlowGraphBlockNames.GreaterThanOrEqual
|
|
9414
9414
|
4. **Special Nodes**
|
|
9415
|
-
- Is Not a Number (`math/
|
|
9416
|
-
- Is Infinity (`math/
|
|
9415
|
+
- Is Not a Number (`math/isNaN`) FlowGraphBlockNames.IsNaN
|
|
9416
|
+
- Is Infinity (`math/isInf`) FlowGraphBlockNames.IsInfinity
|
|
9417
9417
|
- Select (`math/select`) FlowGraphBlockNames.Conditional
|
|
9418
9418
|
- Switch (`math/switch`) FlowGraphBlockNames.DataSwitch
|
|
9419
9419
|
- Random (`math/random`) FlowGraphBlockNames.Random
|
|
@@ -9454,7 +9454,7 @@ declare module BABYLON.GLTF2.Loader.Extensions {
|
|
|
9454
9454
|
- Transpose (`math/transpose`) FlowGraphBlockNames.Transpose
|
|
9455
9455
|
- Determinant (`math/determinant`) FlowGraphBlockNames.Determinant
|
|
9456
9456
|
- Inverse (`math/inverse`) FlowGraphBlockNames.InvertMatrix
|
|
9457
|
-
- Multiplication (`math/
|
|
9457
|
+
- Multiplication (`math/matMul`) FlowGraphBlockNames.MatrixMultiplication
|
|
9458
9458
|
- Compose (`math/matCompose`) FlowGraphBlockNames.MatrixCompose
|
|
9459
9459
|
- Decompose (`math/matDecompose`) FlowGraphBlockNames.MatrixDecompose
|
|
9460
9460
|
10. **Quaternion Nodes**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-loaders",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.22.1",
|
|
4
4
|
"main": "babylonjs.loaders.min.js",
|
|
5
5
|
"types": "babylonjs.loaders.module.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"test:escheck": "es-check es6 ./babylonjs.loaders.js"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"babylonjs": "^8.
|
|
19
|
-
"babylonjs-gltf2interface": "^8.
|
|
18
|
+
"babylonjs": "^8.22.1",
|
|
19
|
+
"babylonjs-gltf2interface": "^8.22.1"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@dev/build-tools": "1.0.0",
|