在onUpdate上使用updateTo時,onComplete未觸發。如果我刪除updateTo行onComplete被觸發,因爲它應該。在onUpdate上使用updateTo時,GSAP/TweenLite/TweenMax 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);
}
這個問題可能會更適合於使用GreenSock論壇 – BadFeelingAboutThis 2015-04-02 22:30:53