I just started using GSAP and really love it, but trying to get the `updateTo` method to work had me stumped for several hours.
The documentation is VERY misleading. I read the part about it not working for plugin values, but then the example shows CSS values with comments describing those values.
This makes it seem like it does work with the CSSPlugin:
//create the tween
var tween = new TweenMax(mc, 2, {x:100, y:200, opacity:0.5});
//then later, update the destination x and y values, restarting the tween
tween.updateTo({x:300, y:0}, true);
//or to update the values mid-tween without restarting, do this:
tween.updateTo({x:300, y:0}, false);
Can the documentation be updated with another example so other people don't assume the same thing?
Thanks