tweenengine 0.12.1 copy "tweenengine: ^0.12.1" to clipboard
tweenengine: ^0.12.1 copied to clipboard

A port of the java Universal tween engine created by Aurelien Ribbon. This library helps you to animate any attribute for any object.

V 0.12.1

  • makes it work with dart >=2.0.0 <3.0.0

V 0.12.0

  • compatible with Dart 2.0/strong mode
  • Tween.targetValues, Tween.targetRelative and Tween.addWayoint no longer accepts num, only List<num>
  • constants are no longer SCREAMING_CAPS but lowerCamelCase
  • TweenEquation (e.g. Bounce.IN, Sine.OUT, etc.) values have been renamed from IN, OUT, INOUT to easeIn, easeOut, easeInOut respectively

V 0.11.0

  • Fixed issue #12 typo in tween.containsTarget which would make it missfunction

V 0.11.0

  • Timeline.createSequence() and Timeline.createParallel() are now replaced for factory named constructors:
    • new Timeline.sequence()
    • new Timeline.parallel()
  • Tween.to, Tween.from, Tween.set, Tween.call and Tween.mark are now replaced for factory named constructors:
    • new Tween.to()
    • new Tweee.from()
    • new Tween.set()
    • new Tween.call()
    • new Tween.mark()
  • TweenAccesor and Tweenable interfaces have both changed, now they both receive the tween as a paremeter in their getValues() and setValues() methods.
  • BaseTween.normalTime added, provides the normalized elapsed time of the tween ( 0 <= normalTime <= 1)

V 0.10.2

  • Fixed a bug where creating a new Tween from within a callback would break the TweenManager
  • Methods setCallback, setCallbackTriggers and setUserData replaced by their respective setters
  • repeatYoyo() will be deprecated in next version, instead, repeat() now takes a bool argument saying wether it is a yoyo repetition or not.
  • Removed generic argument from BaseTween class

V 0.10.1

Bugs Fixed:

  • Changed Timeline to not 'snap' when using a repeat yoyo on it. issue #7
  • added Changelog
  • changed CallbackHandler to TweenCallbackHandler
  • Twee.setCallBack() now receives a TweenCallbackHandler(function) instead of a TweenCallback instance

V 0.10.0

  • added tweenable interface
  • added crude test suit
  • loosened dart sdk dependency

V 0.9.0 #

1
likes
25
pub points
0%
popularity

Publisher

unverified uploader

A port of the java Universal tween engine created by Aurelien Ribbon. This library helps you to animate any attribute for any object.

Repository (GitHub)
View/report issues

License

Apache-2.0 (LICENSE)

More

Packages that depend on tweenengine