com.gskinner.motion

..
easing
plugins
GTween

GTween is a light-weight instance oriented tween engine. This means that you instantiate tweens for specific purposes, and then reuse, update or discard them. This is different than centralized tween engines where you "register" tweens with a global object. This provides a more familiar and useful interface for object oriented programmers.

GTweenTimeline

GTweenTimeline is a powerful sequencing engine for GTween. It allows you to build a virtual timeline with tweens, actions (callbacks), and labels. It supports all of the features of GTween, so you can repeat, reflect, and pause the timeline. You can even embed timelines within each other. GTweenTimeline adds about 1.2kb above GTween.

GTweener

GTweener is an experimental class that provides a static interface and basic override management for GTween. It adds about 1kb to GTween. With GTweener, if you tween a value that is already being tweened, the new tween will override the old tween for only that value. The old tween will continue tweening other values uninterrupted.