greensock / GreenSock-AS3

Public repository for GreenSock's ActionScript 3 libraries like GSAP (TweenLite, TweenMax, etc.) and LoaderMax. For AS2, see the GreenSock-AS2 repository and for JavaScript, see the GreenSock-JS repository. Main site: http://www.greensock.com
409 stars 144 forks source link

added EndPointPlugin for tweening Point objects #14

Closed tluczyns closed 5 years ago

tluczyns commented 5 years ago

There wasn't any plugin for Points objects like for Array objects (EndArrayPlugin) so I create one. Very simple. And yes - I am still using AS3 GSAP in AIR desktop/mobile applications :)

jackdoyle commented 5 years ago

Thanks for the suggestion - I guess I'm a bit confused about why this plugin would be useful or necessary. Couldn't you just TweenLite.to(point1, 1, {x:point2.x, y:point2.y}); ?

tluczyns commented 5 years ago

Actually I could :) Thank you for the tip.