babylonjs-loaders 8.32.3 → 8.33.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.
@@ -1239,8 +1239,8 @@ export class PBRMaterialLoadingAdapter implements IMaterialLoadingAdapter {
1239
1239
  }
1240
1240
 
1241
1241
  }
1242
- declare module "babylonjs-loaders/glTF/2.0/openPbrMaterialLoadingAdapter" {
1243
- import { OpenPBRMaterial } from "babylonjs/Materials/PBR/openPbrMaterial";
1242
+ declare module "babylonjs-loaders/glTF/2.0/openpbrMaterialLoadingAdapter" {
1243
+ import { OpenPBRMaterial } from "babylonjs/Materials/PBR/openpbrMaterial";
1244
1244
  import { Material } from "babylonjs/Materials/material";
1245
1245
  import { BaseTexture } from "babylonjs/Materials/Textures/baseTexture";
1246
1246
  import { Nullable } from "babylonjs/types";
@@ -1695,31 +1695,26 @@ export class OpenPBRMaterialLoadingAdapter implements IMaterialLoadingAdapter {
1695
1695
  configureFuzz(): void;
1696
1696
  /**
1697
1697
  * Sets the fuzz weight.
1698
- * TODO: Implementation pending OpenPBR fuzz feature availability.
1699
1698
  * @param value The fuzz weight value
1700
1699
  */
1701
1700
  set fuzzWeight(value: number);
1702
1701
  /**
1703
1702
  * Sets the fuzz color.
1704
- * TODO: Implementation pending OpenPBR fuzz feature availability.
1705
1703
  * @param value The fuzz color as a Color3
1706
1704
  */
1707
1705
  set fuzzColor(value: Color3);
1708
1706
  /**
1709
1707
  * Sets the fuzz color texture.
1710
- * TODO: Implementation pending OpenPBR fuzz feature availability.
1711
1708
  * @param value The fuzz color texture or null
1712
1709
  */
1713
1710
  set fuzzColorTexture(value: Nullable<BaseTexture>);
1714
1711
  /**
1715
1712
  * Sets the fuzz roughness.
1716
- * TODO: Implementation pending OpenPBR fuzz feature availability.
1717
1713
  * @param value The fuzz roughness value (0-1)
1718
1714
  */
1719
1715
  set fuzzRoughness(value: number);
1720
1716
  /**
1721
1717
  * Sets the fuzz roughness texture.
1722
- * TODO: Implementation pending OpenPBR fuzz feature availability.
1723
1718
  * @param value The fuzz roughness texture or null
1724
1719
  */
1725
1720
  set fuzzRoughnessTexture(value: Nullable<BaseTexture>);
@@ -2161,7 +2156,7 @@ export * from "babylonjs-loaders/glTF/2.0/glTFLoaderExtension";
2161
2156
  export * from "babylonjs-loaders/glTF/2.0/glTFLoaderExtensionRegistry";
2162
2157
  export * from "babylonjs-loaders/glTF/2.0/glTFLoaderInterfaces";
2163
2158
  export * from "babylonjs-loaders/glTF/2.0/glTFLoaderAnimation";
2164
- export * from "babylonjs-loaders/glTF/2.0/openPbrMaterialLoadingAdapter";
2159
+ export * from "babylonjs-loaders/glTF/2.0/openpbrMaterialLoadingAdapter";
2165
2160
  export * from "babylonjs-loaders/glTF/2.0/pbrMaterialLoadingAdapter";
2166
2161
  export * from "babylonjs-loaders/glTF/2.0/Extensions/index";
2167
2162
 
@@ -9063,31 +9058,26 @@ declare module BABYLON.GLTF2 {
9063
9058
  configureFuzz(): void;
9064
9059
  /**
9065
9060
  * Sets the fuzz weight.
9066
- * TODO: Implementation pending OpenPBR fuzz feature availability.
9067
9061
  * @param value The fuzz weight value
9068
9062
  */
9069
9063
  set fuzzWeight(value: number);
9070
9064
  /**
9071
9065
  * Sets the fuzz color.
9072
- * TODO: Implementation pending OpenPBR fuzz feature availability.
9073
9066
  * @param value The fuzz color as a Color3
9074
9067
  */
9075
9068
  set fuzzColor(value: Color3);
9076
9069
  /**
9077
9070
  * Sets the fuzz color texture.
9078
- * TODO: Implementation pending OpenPBR fuzz feature availability.
9079
9071
  * @param value The fuzz color texture or null
9080
9072
  */
9081
9073
  set fuzzColorTexture(value: Nullable<BaseTexture>);
9082
9074
  /**
9083
9075
  * Sets the fuzz roughness.
9084
- * TODO: Implementation pending OpenPBR fuzz feature availability.
9085
9076
  * @param value The fuzz roughness value (0-1)
9086
9077
  */
9087
9078
  set fuzzRoughness(value: number);
9088
9079
  /**
9089
9080
  * Sets the fuzz roughness texture.
9090
- * TODO: Implementation pending OpenPBR fuzz feature availability.
9091
9081
  * @param value The fuzz roughness texture or null
9092
9082
  */
9093
9083
  set fuzzRoughnessTexture(value: Nullable<BaseTexture>);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babylonjs-loaders",
3
- "version": "8.32.3",
3
+ "version": "8.33.1",
4
4
  "main": "babylonjs.loaders.min.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.32.3",
19
- "babylonjs-gltf2interface": "^8.32.3"
18
+ "babylonjs": "^8.33.1",
19
+ "babylonjs-gltf2interface": "^8.33.1"
20
20
  },
21
21
  "devDependencies": {
22
22
  "@dev/build-tools": "1.0.0",