babylonjs-gltf2interface 9.14.0 → 9.16.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 +12 -0
- package/package.json +1 -1
|
@@ -1011,6 +1011,18 @@ declare namespace BABYLON.GLTF2 {
|
|
|
1011
1011
|
attributes: { [name: string]: number };
|
|
1012
1012
|
}
|
|
1013
1013
|
|
|
1014
|
+
/**
|
|
1015
|
+
* Interfaces from the KHR_gaussian_splatting extension
|
|
1016
|
+
*/
|
|
1017
|
+
|
|
1018
|
+
/** @internal */
|
|
1019
|
+
interface IKHRGaussianSplatting {
|
|
1020
|
+
kernel: string;
|
|
1021
|
+
colorSpace: string;
|
|
1022
|
+
projection?: string;
|
|
1023
|
+
sortingMethod?: string;
|
|
1024
|
+
}
|
|
1025
|
+
|
|
1014
1026
|
/**
|
|
1015
1027
|
* Interfaces from the EXT_lights_ies extension
|
|
1016
1028
|
*/
|
package/package.json
CHANGED