babylonjs-gltf2interface 7.0.0 → 7.2.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.glTF2Interface.d.ts +13 -0
- package/package.json +1 -1
@@ -148,6 +148,10 @@ declare module BABYLON.GLTF2 {
|
|
148
148
|
* WEBP Mime-type
|
149
149
|
*/
|
150
150
|
WEBP = "image/webp",
|
151
|
+
/**
|
152
|
+
* AVIF Mime-type
|
153
|
+
*/
|
154
|
+
AVIF = "image/avif",
|
151
155
|
}
|
152
156
|
|
153
157
|
/**
|
@@ -1204,6 +1208,15 @@ declare module BABYLON.GLTF2 {
|
|
1204
1208
|
source: number;
|
1205
1209
|
}
|
1206
1210
|
|
1211
|
+
/**
|
1212
|
+
* Interfaces from the EXT_texture_avif extension
|
1213
|
+
*/
|
1214
|
+
|
1215
|
+
/** @internal */
|
1216
|
+
interface IEXTTextureAVIF {
|
1217
|
+
source: number;
|
1218
|
+
}
|
1219
|
+
|
1207
1220
|
/**
|
1208
1221
|
* Interfaces from the KHR_texture_transform extension
|
1209
1222
|
*/
|
package/package.json
CHANGED