babylonjs-loaders 7.35.2 → 7.37.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.glTF1FileLoader.js +12 -3
- package/babylon.glTF1FileLoader.min.js.map +1 -1
- package/babylon.glTF2FileLoader.js +54 -30
- package/babylon.glTF2FileLoader.min.js +1 -1
- package/babylon.glTF2FileLoader.min.js.map +1 -1
- package/babylon.glTFFileLoader.js +54 -30
- package/babylon.glTFFileLoader.min.js +1 -1
- package/babylon.glTFFileLoader.min.js.map +1 -1
- package/babylon.objFileLoader.js +1 -1
- package/babylon.stlFileLoader.js +1 -1
- package/babylonjs.loaders.d.ts +2 -0
- package/babylonjs.loaders.js +54 -30
- package/babylonjs.loaders.min.js +1 -1
- package/babylonjs.loaders.min.js.map +1 -1
- package/babylonjs.loaders.module.d.ts +5 -0
- package/package.json +3 -3
|
@@ -1112,6 +1112,7 @@ import { IGLTFLoader, IGLTFLoaderData } from "babylonjs-loaders/glTF/glTFFileLoa
|
|
|
1112
1112
|
import { GLTFFileLoader } from "babylonjs-loaders/glTF/glTFFileLoader";
|
|
1113
1113
|
import { IDataBuffer } from "babylonjs/Misc/dataReader";
|
|
1114
1114
|
import { Light } from "babylonjs/Lights/light";
|
|
1115
|
+
import { BoundingInfo } from "babylonjs/Culling/boundingInfo";
|
|
1115
1116
|
import { AssetContainer } from "babylonjs/assetContainer";
|
|
1116
1117
|
import { AnimationPropertyInfo } from "babylonjs-loaders/glTF/2.0/glTFLoaderAnimation";
|
|
1117
1118
|
import { IObjectInfo } from "babylonjs/ObjectModel/objectModelInterfaces";
|
|
@@ -1153,6 +1154,8 @@ export interface IAnimationTargetInfo {
|
|
|
1153
1154
|
/** @internal */
|
|
1154
1155
|
properties: Array<AnimationPropertyInfo>;
|
|
1155
1156
|
}
|
|
1157
|
+
/** @internal */
|
|
1158
|
+
export function LoadBoundingInfoFromPositionAccessor(accessor: IAccessor): Nullable<BoundingInfo>;
|
|
1156
1159
|
/**
|
|
1157
1160
|
* The glTF 2.0 loader
|
|
1158
1161
|
*/
|
|
@@ -5919,6 +5922,8 @@ declare module BABYLON.GLTF2 {
|
|
|
5919
5922
|
/** @internal */
|
|
5920
5923
|
properties: Array<BABYLON.GLTF2.AnimationPropertyInfo>;
|
|
5921
5924
|
}
|
|
5925
|
+
/** @internal */
|
|
5926
|
+
export function LoadBoundingInfoFromPositionAccessor(accessor: BABYLON.GLTF2.Loader.IAccessor): Nullable<BoundingInfo>;
|
|
5922
5927
|
/**
|
|
5923
5928
|
* The glTF 2.0 loader
|
|
5924
5929
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-loaders",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.37.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.37.0",
|
|
19
|
+
"babylonjs-gltf2interface": "^7.37.0"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@dev/build-tools": "1.0.0",
|