babylonjs-loaders 8.41.1 → 8.42.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.bvhFileLoader.min.js.map +1 -1
- package/babylon.glTF1FileLoader.min.js.map +1 -1
- 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/babylon.objFileLoader.min.js.map +1 -1
- package/babylon.stlFileLoader.min.js.map +1 -1
- package/babylonjs.loaders.d.ts +4 -18
- 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 +10 -72
- package/package.json +5 -5
|
@@ -6666,6 +6666,7 @@ export function ParseSpz(data: ArrayBuffer, scene: Scene, loadingOptions: SPLATL
|
|
|
6666
6666
|
|
|
6667
6667
|
}
|
|
6668
6668
|
declare module "babylonjs-loaders/SPLAT/splatLoadingOptions" {
|
|
6669
|
+
import { GaussianSplattingMesh } from "babylonjs/Meshes/GaussianSplatting/gaussianSplattingMesh";
|
|
6669
6670
|
/**
|
|
6670
6671
|
* Options for loading Gaussian Splatting and PLY files
|
|
6671
6672
|
*/
|
|
@@ -6693,6 +6694,10 @@ export type SPLATLoadingOptions = {
|
|
|
6693
6694
|
* Disable automatic camera limits from being applied if they exist in the splat file
|
|
6694
6695
|
*/
|
|
6695
6696
|
disableAutoCameraLimits?: boolean;
|
|
6697
|
+
/**
|
|
6698
|
+
* Mesh that will be used to load data instead of creating a new one
|
|
6699
|
+
*/
|
|
6700
|
+
gaussianSplattingMesh?: GaussianSplattingMesh;
|
|
6696
6701
|
};
|
|
6697
6702
|
|
|
6698
6703
|
}
|
|
@@ -7484,63 +7489,10 @@ export class BVHFileLoader implements ISceneLoaderPluginAsync, ISceneLoaderPlugi
|
|
|
7484
7489
|
loadAssetContainerAsync(scene: Scene, data: unknown): Promise<AssetContainer>;
|
|
7485
7490
|
}
|
|
7486
7491
|
|
|
7487
|
-
}
|
|
7488
|
-
declare module "babylonjs-loaders/legacy/legacy" {
|
|
7489
|
-
export * from "babylonjs-loaders/index";
|
|
7490
|
-
export * from "babylonjs-loaders/legacy/legacy-bvhFileLoader";
|
|
7491
|
-
export * from "babylonjs-loaders/legacy/legacy-glTF";
|
|
7492
|
-
export * from "babylonjs-loaders/legacy/legacy-glTF1";
|
|
7493
|
-
export * from "babylonjs-loaders/legacy/legacy-glTF2";
|
|
7494
|
-
export * from "babylonjs-loaders/legacy/legacy-objFileLoader";
|
|
7495
|
-
export * from "babylonjs-loaders/legacy/legacy-stlFileLoader";
|
|
7496
|
-
|
|
7497
|
-
}
|
|
7498
|
-
declare module "babylonjs-loaders/legacy/legacy-stlFileLoader" {
|
|
7499
|
-
export * from "babylonjs-loaders/STL/index";
|
|
7500
|
-
|
|
7501
|
-
}
|
|
7502
|
-
declare module "babylonjs-loaders/legacy/legacy-objFileLoader" {
|
|
7503
|
-
export * from "babylonjs-loaders/OBJ/index";
|
|
7504
|
-
|
|
7505
|
-
}
|
|
7506
|
-
declare module "babylonjs-loaders/legacy/legacy-glTFFileLoader" {
|
|
7507
|
-
export * from "babylonjs-loaders/legacy/legacy-glTF";
|
|
7508
|
-
export * from "babylonjs-loaders/legacy/legacy-glTF1";
|
|
7509
|
-
export * from "babylonjs-loaders/legacy/legacy-glTF2";
|
|
7510
|
-
|
|
7511
|
-
}
|
|
7512
|
-
declare module "babylonjs-loaders/legacy/legacy-glTF2FileLoader" {
|
|
7513
|
-
export * from "babylonjs-loaders/legacy/legacy-glTF";
|
|
7514
|
-
export * from "babylonjs-loaders/legacy/legacy-glTF2";
|
|
7515
|
-
|
|
7516
|
-
}
|
|
7517
|
-
declare module "babylonjs-loaders/legacy/legacy-glTF2" {
|
|
7518
|
-
import * as GLTF2 from "babylonjs-loaders/glTF/2.0/index";
|
|
7519
|
-
export { GLTF2 };
|
|
7520
|
-
|
|
7521
|
-
}
|
|
7522
|
-
declare module "babylonjs-loaders/legacy/legacy-glTF1FileLoader" {
|
|
7523
|
-
export * from "babylonjs-loaders/legacy/legacy-glTF";
|
|
7524
|
-
export * from "babylonjs-loaders/legacy/legacy-glTF1";
|
|
7525
|
-
|
|
7526
|
-
}
|
|
7527
|
-
declare module "babylonjs-loaders/legacy/legacy-glTF1" {
|
|
7528
|
-
import * as GLTF1 from "babylonjs-loaders/glTF/1.0/index";
|
|
7529
|
-
export { GLTF1 };
|
|
7530
|
-
|
|
7531
|
-
}
|
|
7532
|
-
declare module "babylonjs-loaders/legacy/legacy-glTF" {
|
|
7533
|
-
export * from "babylonjs-loaders/glTF/glTFFileLoader";
|
|
7534
|
-
export * from "babylonjs-loaders/glTF/glTFValidation";
|
|
7535
|
-
|
|
7536
|
-
}
|
|
7537
|
-
declare module "babylonjs-loaders/legacy/legacy-bvhFileLoader" {
|
|
7538
|
-
export * from "babylonjs-loaders/BVH/index";
|
|
7539
|
-
|
|
7540
7492
|
}
|
|
7541
7493
|
|
|
7542
7494
|
declare module "babylonjs-loaders" {
|
|
7543
|
-
export * from "babylonjs-loaders/
|
|
7495
|
+
export * from "babylonjs-loaders/index";
|
|
7544
7496
|
}
|
|
7545
7497
|
|
|
7546
7498
|
|
|
@@ -14043,6 +13995,10 @@ declare module BABYLON {
|
|
|
14043
13995
|
* Disable automatic camera limits from being applied if they exist in the splat file
|
|
14044
13996
|
*/
|
|
14045
13997
|
disableAutoCameraLimits?: boolean;
|
|
13998
|
+
/**
|
|
13999
|
+
* Mesh that will be used to load data instead of creating a new one
|
|
14000
|
+
*/
|
|
14001
|
+
gaussianSplattingMesh?: GaussianSplattingMesh;
|
|
14046
14002
|
};
|
|
14047
14003
|
|
|
14048
14004
|
|
|
@@ -14772,24 +14728,6 @@ declare module BABYLON {
|
|
|
14772
14728
|
}
|
|
14773
14729
|
|
|
14774
14730
|
|
|
14775
|
-
|
|
14776
|
-
|
|
14777
|
-
|
|
14778
|
-
|
|
14779
|
-
|
|
14780
|
-
|
|
14781
|
-
|
|
14782
|
-
|
|
14783
|
-
|
|
14784
|
-
|
|
14785
|
-
|
|
14786
|
-
|
|
14787
|
-
|
|
14788
|
-
|
|
14789
|
-
|
|
14790
|
-
|
|
14791
|
-
|
|
14792
|
-
|
|
14793
14731
|
|
|
14794
14732
|
}
|
|
14795
14733
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-loaders",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.42.0",
|
|
4
4
|
"main": "babylonjs.loaders.min.js",
|
|
5
5
|
"types": "babylonjs.loaders.module.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -15,16 +15,16 @@
|
|
|
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.42.0",
|
|
19
|
+
"babylonjs-gltf2interface": "^8.42.0"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@dev/build-tools": "1.0.0",
|
|
23
23
|
"@dev/core": "1.0.0",
|
|
24
24
|
"source-map-loader": "^4.0.0",
|
|
25
25
|
"ts-loader": "^9.2.6",
|
|
26
|
-
"webpack": "^5.
|
|
27
|
-
"webpack-cli": "
|
|
26
|
+
"webpack": "^5.103.0",
|
|
27
|
+
"webpack-cli": "6.0.1",
|
|
28
28
|
"webpack-merge": "^5.8.0"
|
|
29
29
|
},
|
|
30
30
|
"keywords": [
|