如何在as3中获得与TweenLite.to相同的效果

时间:2013-12-04 18:19:22

标签: actionscript-3 tween

我正在使用此代码:

TweenLite.to(auto, 4, {x:666.15, y:375.6});
来自绿色摇滚的但是我遇到了一些问题。它与hittestobject结合使用时不会回到原来的x和y坐标。那么有人有一个代码或解决方案来获得与TweenLite.to ??

相同的效果

1 个答案:

答案 0 :(得分:0)

如果您正在使用TweenLite补间在每个帧上检查了hitTest的某个对象,则可以在Tween上使用updateTo()或reverse()。这看起来像这样:

var tw:TweenLite = TweenLite.to( auto, 4, { x: 555, y: 375, onUpdate: checkHitTest } );
function checkHitTest(){
   //check here for possible hit and call updateTo method
   tw.updateTo({ x: 20, y: 30 }, false );
   //last parameter defines if tween should be modified or if new tween should be created
}