babylonjs-loaders 7.0.0 → 7.1.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.
@@ -783,6 +783,35 @@ declare module BABYLON.GLTF2.Loader.Extensions {
783
783
 
784
784
 
785
785
 
786
+ }
787
+ declare module BABYLON {
788
+
789
+ }
790
+ declare module BABYLON.GLTF2.Loader.Extensions {
791
+ /**
792
+ * [glTF PR](https://github.com/KhronosGroup/glTF/pull/2235)
793
+ * [Specification](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Vendor/EXT_texture_avif/README.md)
794
+ */
795
+ export class EXT_texture_avif implements BABYLON.GLTF2.IGLTFLoaderExtension {
796
+ /** The name of this extension. */
797
+ readonly name = "EXT_texture_avif";
798
+ /** Defines whether this extension is enabled. */
799
+ enabled: boolean;
800
+ private _loader;
801
+ /**
802
+ * @internal
803
+ */
804
+ constructor(loader: BABYLON.GLTF2.GLTFLoader);
805
+ /** @internal */
806
+ dispose(): void;
807
+ /**
808
+ * @internal
809
+ */
810
+ _loadTextureAsync(context: string, texture: BABYLON.GLTF2.Loader.ITexture, assign: (babylonTexture: BaseTexture) => void): Nullable<Promise<BaseTexture>>;
811
+ }
812
+
813
+
814
+
786
815
  }
787
816
  declare module BABYLON {
788
817