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
package/babylonjs.loaders.d.ts
CHANGED
|
@@ -4780,11 +4780,11 @@ declare module BABYLON {
|
|
|
4780
4780
|
* @param scene the scene the meshes should be added to
|
|
4781
4781
|
* @param data the gaussian splatting data to load
|
|
4782
4782
|
* @param rootUrl root url to load from
|
|
4783
|
-
* @param
|
|
4784
|
-
* @param
|
|
4783
|
+
* @param _onProgress callback called while file is loading
|
|
4784
|
+
* @param _fileName Defines the name of the file to load
|
|
4785
4785
|
* @returns a promise containing the loaded meshes, particles, skeletons and animations
|
|
4786
4786
|
*/
|
|
4787
|
-
importMeshAsync(meshesNames: any, scene: Scene, data: any, rootUrl: string,
|
|
4787
|
+
importMeshAsync(meshesNames: any, scene: Scene, data: any, rootUrl: string, _onProgress?: (event: ISceneLoaderProgressEvent) => void, _fileName?: string): Promise<ISceneLoaderAsyncResult>;
|
|
4788
4788
|
private static _BuildPointCloud;
|
|
4789
4789
|
private static _BuildMesh;
|
|
4790
4790
|
private _parseSPZAsync;
|