babylonjs-loaders 8.8.0 → 8.8.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.glTF1FileLoader.js +20 -7
- package/babylon.glTF1FileLoader.min.js +1 -1
- package/babylon.glTF1FileLoader.min.js.map +1 -1
- package/babylon.glTF2FileLoader.js +1321 -869
- package/babylon.glTF2FileLoader.min.js +1 -1
- package/babylon.glTF2FileLoader.min.js.map +1 -1
- package/babylon.glTFFileLoader.js +1339 -876
- package/babylon.glTFFileLoader.min.js +1 -1
- package/babylon.glTFFileLoader.min.js.map +1 -1
- package/babylon.objFileLoader.js +14 -3
- package/babylon.objFileLoader.min.js.map +1 -1
- package/babylonjs.loaders.d.ts +3 -3
- package/babylonjs.loaders.js +1435 -932
- package/babylonjs.loaders.min.js +1 -1
- package/babylonjs.loaders.min.js.map +1 -1
- package/babylonjs.loaders.module.d.ts +6 -6
- package/package.json +3 -3
|
@@ -4969,11 +4969,11 @@ export class SPLATFileLoader implements ISceneLoaderPluginAsync, ISceneLoaderPlu
|
|
|
4969
4969
|
* @param scene the scene the meshes should be added to
|
|
4970
4970
|
* @param data the gaussian splatting data to load
|
|
4971
4971
|
* @param rootUrl root url to load from
|
|
4972
|
-
* @param
|
|
4973
|
-
* @param
|
|
4972
|
+
* @param _onProgress callback called while file is loading
|
|
4973
|
+
* @param _fileName Defines the name of the file to load
|
|
4974
4974
|
* @returns a promise containing the loaded meshes, particles, skeletons and animations
|
|
4975
4975
|
*/
|
|
4976
|
-
importMeshAsync(meshesNames: any, scene: Scene, data: any, rootUrl: string,
|
|
4976
|
+
importMeshAsync(meshesNames: any, scene: Scene, data: any, rootUrl: string, _onProgress?: (event: ISceneLoaderProgressEvent) => void, _fileName?: string): Promise<ISceneLoaderAsyncResult>;
|
|
4977
4977
|
private static _BuildPointCloud;
|
|
4978
4978
|
private static _BuildMesh;
|
|
4979
4979
|
private _parseSPZAsync;
|
|
@@ -10382,11 +10382,11 @@ declare module BABYLON {
|
|
|
10382
10382
|
* @param scene the scene the meshes should be added to
|
|
10383
10383
|
* @param data the gaussian splatting data to load
|
|
10384
10384
|
* @param rootUrl root url to load from
|
|
10385
|
-
* @param
|
|
10386
|
-
* @param
|
|
10385
|
+
* @param _onProgress callback called while file is loading
|
|
10386
|
+
* @param _fileName Defines the name of the file to load
|
|
10387
10387
|
* @returns a promise containing the loaded meshes, particles, skeletons and animations
|
|
10388
10388
|
*/
|
|
10389
|
-
importMeshAsync(meshesNames: any, scene: Scene, data: any, rootUrl: string,
|
|
10389
|
+
importMeshAsync(meshesNames: any, scene: Scene, data: any, rootUrl: string, _onProgress?: (event: ISceneLoaderProgressEvent) => void, _fileName?: string): Promise<ISceneLoaderAsyncResult>;
|
|
10390
10390
|
private static _BuildPointCloud;
|
|
10391
10391
|
private static _BuildMesh;
|
|
10392
10392
|
private _parseSPZAsync;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-loaders",
|
|
3
|
-
"version": "8.8.
|
|
3
|
+
"version": "8.8.1",
|
|
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": "^8.8.
|
|
19
|
-
"babylonjs-gltf2interface": "^8.8.
|
|
18
|
+
"babylonjs": "^8.8.1",
|
|
19
|
+
"babylonjs-gltf2interface": "^8.8.1"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@dev/build-tools": "1.0.0",
|