Releases: u10int/Kinetic
Releases · u10int/Kinetic
1.1.2
1.1.1
1.1.0
-
Refactored timing functions and how they are called with
Tween
andTimeline
:- Use
ease(Quadratic.easeInOut)
orease(Bounce.easeOut)
etc for primary easing functions. - Use
ease(Bezier(0.55, 0, 0.1, 1))
for custom bezier path easing curves - Use
ease(Linear())
for linear timing (default)
- Use
-
Supported built-in easing curves:
Quadratic
,Cubic
,Quartic
,Quintic
,Sine
,Circular
,Exponential
,Elastic
,Back
,Bounce
-
Custom easing using Google Material Design "Swift Out" easing:
Bezier(0.55, 0, 0.1, 1)