Skip to content

1.1.0

Compare
Choose a tag to compare
@u10int u10int released this 27 Jan 01:59
· 5 commits to master since this release
  • Refactored timing functions and how they are called with Tween and Timeline:

    • Use ease(Quadratic.easeInOut) or ease(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)
  • 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)