babylonjs-gltf2interface 8.42.0 → 8.43.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.
|
@@ -1524,8 +1524,6 @@ declare module BABYLON.GLTF2 {
|
|
|
1524
1524
|
|
|
1525
1525
|
type ValueSignature = "bool" | "float" | "float2" | "float3" | "float4" | "float2x2" | "float3x3" | "float4x4" | "int" | "custom";
|
|
1526
1526
|
|
|
1527
|
-
type ConfigurationValueSignature = "bool" | "int" | "int[]" | "string";
|
|
1528
|
-
|
|
1529
1527
|
type ConfigurationValueType = (boolean | number | string)[];
|
|
1530
1528
|
|
|
1531
1529
|
interface IKHRInteractivity_Event {
|
|
@@ -1641,6 +1639,6 @@ declare module BABYLON.GLTF2 {
|
|
|
1641
1639
|
/**
|
|
1642
1640
|
* Array size depends on the type. primitives have array size 1, rest depending on the object type (2,3,4,16)
|
|
1643
1641
|
*/
|
|
1644
|
-
value
|
|
1642
|
+
value?: ConfigurationValueType;
|
|
1645
1643
|
}
|
|
1646
1644
|
}
|
package/package.json
CHANGED