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.
- package/babylon.glTF2Interface.d.ts +15 -0
- package/package.json +1 -1
@@ -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