babylonjs-gltf2interface 9.20.0 → 9.21.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.
|
@@ -1541,11 +1541,11 @@ declare namespace BABYLON.GLTF2 {
|
|
|
1541
1541
|
*/
|
|
1542
1542
|
type NodeIndex = number;
|
|
1543
1543
|
/**
|
|
1544
|
-
* Value types supported (in js it is either boolean or number)
|
|
1544
|
+
* Value types supported (in js it is either boolean or number, or string for opaque references)
|
|
1545
1545
|
*/
|
|
1546
|
-
type ValueType = (boolean | number)[];
|
|
1546
|
+
type ValueType = (boolean | number | string)[];
|
|
1547
1547
|
|
|
1548
|
-
type ValueSignature = "bool" | "float" | "float2" | "float3" | "float4" | "float2x2" | "float3x3" | "float4x4" | "int" | "custom";
|
|
1548
|
+
type ValueSignature = "bool" | "float" | "float2" | "float3" | "float4" | "float2x2" | "float3x3" | "float4x4" | "int" | "ref" | "custom";
|
|
1549
1549
|
|
|
1550
1550
|
type ConfigurationValueType = (boolean | number | string)[];
|
|
1551
1551
|
|
package/package.json
CHANGED