babylonjs-loaders 7.9.0 → 7.10.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.objFileLoader.js +43 -12
- package/babylon.objFileLoader.min.js +1 -1
- package/babylon.objFileLoader.min.js.map +1 -1
- package/babylonjs.loaders.d.ts +1 -0
- package/babylonjs.loaders.js +43 -12
- package/babylonjs.loaders.min.js +1 -1
- package/babylonjs.loaders.min.js.map +1 -1
- package/babylonjs.loaders.module.d.ts +2 -0
- package/package.json +3 -3
|
@@ -3980,6 +3980,7 @@ export class SolidParser {
|
|
|
3980
3980
|
private _babylonMeshesArray;
|
|
3981
3981
|
private _pushTriangle;
|
|
3982
3982
|
private _handednessSign;
|
|
3983
|
+
private _hasLineData;
|
|
3983
3984
|
/**
|
|
3984
3985
|
* Creates a new SolidParser
|
|
3985
3986
|
* @param materialToUse defines the array to fill with the list of materials to use (it will be filled by the parse function)
|
|
@@ -8142,6 +8143,7 @@ declare module BABYLON {
|
|
|
8142
8143
|
private _babylonMeshesArray;
|
|
8143
8144
|
private _pushTriangle;
|
|
8144
8145
|
private _handednessSign;
|
|
8146
|
+
private _hasLineData;
|
|
8145
8147
|
/**
|
|
8146
8148
|
* Creates a new SolidParser
|
|
8147
8149
|
* @param materialToUse defines the array to fill with the list of materials to use (it will be filled by the parse function)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-loaders",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.10.0",
|
|
4
4
|
"main": "babylonjs.loaders.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": "^7.
|
|
19
|
-
"babylonjs-gltf2interface": "^7.
|
|
18
|
+
"babylonjs": "^7.10.0",
|
|
19
|
+
"babylonjs-gltf2interface": "^7.10.0"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@dev/build-tools": "1.0.0",
|