在onUpdate上使用updateTo时,GSAP / TweenLite / TweenMax onComplete未触发

时间:2015-04-02 16:55:22

标签: actionscript-3 tween tweenlite tweenmax gsap

在onUpdate上使用updateTo时,

onComplete未触发。如果我删除updateTo行onComplete将按原样触发。

我正在使用GSAP的最新更新。

private function fingerLoop():void 
{
   // Set the gotoPlanet var

   TweenMax.to(finger, 1, { x:gotoPlanet.x, y:gotoPlanet.y, onComplete:fingerLoop, onUpdate:moveFinger, onUpdateParams:["{self}", gotoPlanet] });
}

private function moveFinger(tween, gotoPlanet):void 
{
  tween.updateTo({x:gotoPlanet.x, y:gotoPlanet.y}, false);
}

1 个答案:

答案 0 :(得分:0)

也许您可以在onComplete电话中添加updateTo()处理程序,如下所示:

tween.updateTo({x:gotoPlanet.x, y:gotoPlanet.y, onComplete:fingerLoop}, false);