@firere/bezier-tween
v1.0.2
Published
A typed module which allows you to use cubic Bezier tweens in Roblox
Downloads
10
Readme
bezier-tween
A typed module which allows you to use cubic Bezier tweens in Roblox. It tries to behave as closely as possible to the behaviour of regular Tween
s, including implementing the same methods and PlaybackState
s.
Example usage
const gui = new Instance("ScreenGui");
const box = new Instance("Frame");
box.Parent = gui;
gui.Parent = Players.LocalPlayer.FindFirstChild("PlayerGui") as PlayerGui;
const tween = new BezierTween([0.25, 0.1, 0.25, 1])