Hi all,
I wanted to know how the EndArrayPlugin is different from the regular TweenLite? Comparing:
var myArray:Array = [1,2,3,4];
TweenLite.to(myArray, 1.5, [10,20,30,40]);
And the alternate EndArray syntax:
var myArray:Array = [1,2,3,4];
TweenLite.to(myArray, 1.5, {endArray:[10,20,30,40]});
How would that be different? And I looked at the code in EndArrayPlugin, it supports round on/off which TweenLite does not? Is that the only difference or is there more?
They both work, I've tested them.