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 ?
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 !
