@rbxts/types 1.0.866 → 1.0.867
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.
|
@@ -41726,9 +41726,9 @@ interface TweenService extends Instance {
|
|
|
41726
41726
|
* @param dt The rate at which the smoothing operation should be applied.
|
|
41727
41727
|
* @returns The new position and velocity calculated from the smoothing operation.
|
|
41728
41728
|
*/
|
|
41729
|
-
SmoothDamp(this: TweenService, current:
|
|
41730
|
-
|
|
41731
|
-
|
|
41729
|
+
SmoothDamp<T extends number | Vector2 | Vector3 | CFrame>(this: TweenService, current: T, target: T, velocity: T, smoothTime: number, maxSpeed?: number, dt?: number): LuaTuple<[
|
|
41730
|
+
T,
|
|
41731
|
+
T
|
|
41732
41732
|
]>;
|
|
41733
41733
|
}
|
|
41734
41734
|
/**
|