Some tips that blew my mind and enhanced my animation code. Default Ease I use eases a lot. Expo, Cubic, Linear, Elastic, Back... But except in specific cases, I usually use the same ease on every tween, which become kind of boring to write each time. Here comes defaultEase: TweenLite.defaultEase = Expo.easeOut; …