Tween.to(this.floatTxt, {y:-30}, 600, Ease.expoOut, Handler.create(this,onFloatComplete));
protected function onFloatComplete(callBack:Function):void
{
this.removeSelf();
}
我用这个缓动来做飘字效果,完成回调的时候,把飘字对象在场景上移除,结果执行次数很多之后,发现场景上有许多飘字并没有被移除,有没有可能是缓动没执行到完成回调函数呀?