@rbxts/types 1.0.795 → 1.0.796
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/include/roblox.d.ts +4 -6
- package/package.json +1 -1
package/include/roblox.d.ts
CHANGED
|
@@ -3020,12 +3020,10 @@ interface UnbanAsyncConfig {
|
|
|
3020
3020
|
ApplyToUniverse?: boolean;
|
|
3021
3021
|
}
|
|
3022
3022
|
|
|
3023
|
-
|
|
3024
|
-
|
|
3025
|
-
|
|
3026
|
-
|
|
3027
|
-
[key: number]: number;
|
|
3028
|
-
}
|
|
3023
|
+
/**
|
|
3024
|
+
* Keys are expected to be unique numbers greater than or equal to 0, while values are expected to be numbers between 0 and 1 (inclusive). Tables containing up to 400 key-value pairs are supported.
|
|
3025
|
+
*/
|
|
3026
|
+
type DistanceAttenuationCurve = { [key: number]: number } | Map<number, number>;
|
|
3029
3027
|
|
|
3030
3028
|
interface CalculateConstraintsToPreserveConfig {
|
|
3031
3029
|
/**
|