Sorry forgot to add to my previous post:
Is there a good Greensock way to update a canvas draw function over a duration? So you would have access to the current time value in the draw function without the use of a sudo reference element?
function draw() {
// scale the circle over time
console.log(this._time);
}
TweenLite.to({}, 2, {onUpdate: draw});