unity easing out code example Example: unity easing out Math.easeOutQuad = function (t, b, c, d) { t /= d; return -c * t*(t-2) + b; };