Share Posted October 22, 2010 Greetings I noticed when I tween some MovieClip, the speed is not constantly, on the end of tweening or timeline it’s slow down. How to fix it? TweenLite.to(mc, 1, { y:300}); Or var myTween:TweenLite = new TweenLite(mc, 1, { y:300}); or if I use timelineLite thanks Link to comment Share on other sites More sharing options...
Share Posted October 22, 2010 The default ease for a Tween is an easeOut. But you can change to a constant speed by changing the ease property: TweenLite.to(mc, 1, {y:300, ease:Linear.easeNone}); Hope that helps Link to comment Share on other sites More sharing options...
Author Share Posted October 22, 2010 Thanks Didn't know that. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now