FairyGUI: error in update callback

看了下代码,在Tween的回调报错。已经调用了
fgui.GRoot.inst.dispose(),是否这个函数应该不应该继续跑了?

GTweener.prototype.callUpdateCallback = function () {
            if (this._onUpdate != null) {
                try {
                    this._onUpdate.call(this._onUpdateCaller, this);
                }
                catch (err) {
                    console.log("FairyGUI: error in update callback > " + err);
                }
            }
        };
 
已邀请:

谷主

赞同来自:

回调报错,应该检查你的回调代码。

要回复问题请先登录注册