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.
- 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/babylonjs.loaders.d.ts +0 -5
- 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 +3 -13
- package/package.json +3 -3
package/babylonjs.loaders.d.ts
CHANGED
|
@@ -1656,31 +1656,26 @@ declare module BABYLON.GLTF2 {
|
|
|
1656
1656
|
configureFuzz(): void;
|
|
1657
1657
|
/**
|
|
1658
1658
|
* Sets the fuzz weight.
|
|
1659
|
-
* TODO: Implementation pending OpenPBR fuzz feature availability.
|
|
1660
1659
|
* @param value The fuzz weight value
|
|
1661
1660
|
*/
|
|
1662
1661
|
set fuzzWeight(value: number);
|
|
1663
1662
|
/**
|
|
1664
1663
|
* Sets the fuzz color.
|
|
1665
|
-
* TODO: Implementation pending OpenPBR fuzz feature availability.
|
|
1666
1664
|
* @param value The fuzz color as a Color3
|
|
1667
1665
|
*/
|
|
1668
1666
|
set fuzzColor(value: Color3);
|
|
1669
1667
|
/**
|
|
1670
1668
|
* Sets the fuzz color texture.
|
|
1671
|
-
* TODO: Implementation pending OpenPBR fuzz feature availability.
|
|
1672
1669
|
* @param value The fuzz color texture or null
|
|
1673
1670
|
*/
|
|
1674
1671
|
set fuzzColorTexture(value: Nullable<BaseTexture>);
|
|
1675
1672
|
/**
|
|
1676
1673
|
* Sets the fuzz roughness.
|
|
1677
|
-
* TODO: Implementation pending OpenPBR fuzz feature availability.
|
|
1678
1674
|
* @param value The fuzz roughness value (0-1)
|
|
1679
1675
|
*/
|
|
1680
1676
|
set fuzzRoughness(value: number);
|
|
1681
1677
|
/**
|
|
1682
1678
|
* Sets the fuzz roughness texture.
|
|
1683
|
-
* TODO: Implementation pending OpenPBR fuzz feature availability.
|
|
1684
1679
|
* @param value The fuzz roughness texture or null
|
|
1685
1680
|
*/
|
|
1686
1681
|
set fuzzRoughnessTexture(value: Nullable<BaseTexture>);
|