babylonjs-gltf2interface 5.25.0 → 5.26.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 +11 -4
- package/package.json +1 -1
@@ -1101,7 +1101,6 @@ declare module BABYLON.GLTF2 {
|
|
1101
1101
|
|
1102
1102
|
/**
|
1103
1103
|
* Interfaces from the KHR_materials_emissive_strength extension
|
1104
|
-
* !!! Experimental Extension Subject to Changes !!!
|
1105
1104
|
*/
|
1106
1105
|
|
1107
1106
|
/** @internal */
|
@@ -1147,7 +1146,6 @@ declare module BABYLON.GLTF2 {
|
|
1147
1146
|
|
1148
1147
|
/**
|
1149
1148
|
* Interfaces from the KHR_materials_variants extension
|
1150
|
-
* !!! Experimental Extension Subject to Changes !!!
|
1151
1149
|
*/
|
1152
1150
|
|
1153
1151
|
/** @internal */
|
@@ -1170,7 +1168,6 @@ declare module BABYLON.GLTF2 {
|
|
1170
1168
|
|
1171
1169
|
/**
|
1172
1170
|
* Interfaces from the KHR_texture_basisu extension
|
1173
|
-
* !!! Experimental Extension Subject to Changes !!!
|
1174
1171
|
*/
|
1175
1172
|
|
1176
1173
|
/** @internal */
|
@@ -1201,7 +1198,6 @@ declare module BABYLON.GLTF2 {
|
|
1201
1198
|
|
1202
1199
|
/**
|
1203
1200
|
* Interfaces from the KHR_xmp_json_ld extension
|
1204
|
-
* !!! Experimental Extension Subject to Changes !!!
|
1205
1201
|
*/
|
1206
1202
|
|
1207
1203
|
/** @internal */
|
@@ -1216,6 +1212,17 @@ declare module BABYLON.GLTF2 {
|
|
1216
1212
|
packet: number;
|
1217
1213
|
}
|
1218
1214
|
|
1215
|
+
|
1216
|
+
/**
|
1217
|
+
* Interfaces from the KHR_animation_pointer extension
|
1218
|
+
* !!! Experimental Extension Subject to Changes !!!
|
1219
|
+
*/
|
1220
|
+
|
1221
|
+
/** @hidden */
|
1222
|
+
interface IKHRAnimationPointer {
|
1223
|
+
pointer: string;
|
1224
|
+
}
|
1225
|
+
|
1219
1226
|
/**
|
1220
1227
|
* Interfaces from the MSFT_audio_emitter extension
|
1221
1228
|
*/
|
package/package.json
CHANGED