babylonjs-loaders 7.35.2 → 7.36.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.
@@ -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.35.2",
3
+ "version": "7.36.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.35.2",
19
- "babylonjs-gltf2interface": "^7.35.2"
18
+ "babylonjs": "^7.36.0",
19
+ "babylonjs-gltf2interface": "^7.36.0"
20
20
  },
21
21
  "devDependencies": {
22
22
  "@dev/build-tools": "1.0.0",