babylonjs-gltf2interface 8.47.0 → 8.47.2
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 -0
- package/package.json +1 -1
|
@@ -1161,6 +1161,17 @@ declare module BABYLON.GLTF2 {
|
|
|
1161
1161
|
attenuationColor?: number[];
|
|
1162
1162
|
}
|
|
1163
1163
|
|
|
1164
|
+
/**
|
|
1165
|
+
* Interfaces from the KHR_materials_volume_scatter extension
|
|
1166
|
+
*/
|
|
1167
|
+
|
|
1168
|
+
/** @internal */
|
|
1169
|
+
interface IKHRMaterialsVolumeScatter {
|
|
1170
|
+
scatterAnisotropy?: number;
|
|
1171
|
+
multiscatterColor?: number[];
|
|
1172
|
+
multiscatterColorTexture?: ITextureInfo;
|
|
1173
|
+
}
|
|
1174
|
+
|
|
1164
1175
|
/**
|
|
1165
1176
|
* Interfaces from the KHR_materials_dispersion extension
|
|
1166
1177
|
*/
|
package/package.json
CHANGED