Share Posted March 8, 2013 I am tweening an objct on a circular path: TweenLite.to(glareMC, 2, { circlePath2D: { path: circlePath, startAngle: 225, endAngle: 225, direction: Direction.COUNTER_CLOCKWISE, extraRevolutions: 1 }} ); I'd expect to see a CCW motion, as specified in the direction property, but the glareMC moves CW: why? If I change endAngle to whatever different from startAngle the animation looks correct: is this an unhandled exception of the motionPath engine? Link to comment Share on other sites More sharing options...
Share Posted March 11, 2013 Yep, the issue was that you had absolutely no change (startAngle and endAngle matched). We'll add some code to handle that scenario in the next release. Thanks for pointing it out. For now, it should be as simple as changing the startAngle to be a tiny bit different (even 0.0000001). 1 Link to comment Share on other sites More sharing options...
Author Share Posted March 11, 2013 Ok, thank you Jack! 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