babylonjs-gltf2interface 8.10.0 → 8.11.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.
@@ -1127,6 +1127,21 @@ declare module BABYLON.GLTF2 {
1127
1127
  specularColorFactor?: number[];
1128
1128
  specularTexture?: ITextureInfo;
1129
1129
  specularColorTexture?: ITextureInfo;
1130
+ /**
1131
+ * Dictionary object with extension-specific objects
1132
+ */
1133
+ extensions?: {
1134
+ [key: string]: any;
1135
+ };
1136
+ }
1137
+
1138
+ /**
1139
+ * Interfaces from the EXT_materials_specular_edge_color extension
1140
+ */
1141
+
1142
+ /** @internal */
1143
+ interface IEXTMaterialsSpecularEdgeColor {
1144
+ specularEdgeColorEnabled?: boolean;
1130
1145
  }
1131
1146
 
1132
1147
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "babylonjs-gltf2interface",
3
3
  "description": "A typescript declaration of babylon's gltf2 interface.",
4
- "version": "8.10.0",
4
+ "version": "8.11.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/BabylonJS/Babylon.js.git"