SOLVED - Motion Blur - different properties velocities

TweenLite, TweenMax, and TweenFilterLite questions/comments/discussions

SOLVED - Motion Blur - different properties velocities

Postby peteragentweb » Tue Feb 09, 2010 4:23 am

Hi,

Is it possible to affect a motionBlur to a DiplayObject which properties tween with different velocities ?

This works, but all the properties tween with the same velocity :
Code: Select all
TweenLite.to(logo, 1.5, {x:35, y:ls.stage.stageHeight -17.5 , width:70 , height:35, ease:Quint.easeInOut, motionBlur:{strength:3, quality:3}});


but when i applicate different tween velocity, the tweens don't work anymore :
Code: Select all
TweenLite.to(logo, .3, {width:70 , height:35, ease:Quint.easeInOut, motionBlur:{strength:3, quality:3}});
         TweenLite.to(logo, .5, {x:35, ease:Quint.easeInOut, motionBlur:{strength:3, quality:3}});
         TweenLite.to(logo, .7, {y:ls.stage.stageHeight -17.5, ease:Quint.easeInOut, motionBlur:{strength:3, quality:3}});


Is there something wrong in my code ? :roll:

EDIT : ok, sorry for this i solved my problem : I just had before tweening :
Code: Select all
OverwriteManager.init(OverwriteManager.AUTO);


and now : it works fine : Great Pluggin ! :D
peteragentweb
 
Posts: 3
Joined: Sun Feb 07, 2010 7:17 am

Return to Tweening