We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eaa5199 commit b2b9b6eCopy full SHA for b2b9b6e
cocos2d/core/CCDirector.js
@@ -136,6 +136,7 @@ cc.Director = cc.Class.extend(/** @lends cc.Director# */{
136
//action manager
137
if (cc.ActionManager) {
138
this._actionManager = new cc.ActionManager();
139
+ this._scheduler.scheduleUpdate(this._actionManager, cc.Scheduler.PRIORITY_SYSTEM, false);
140
} else {
141
this._actionManager = null;
142
}
@@ -228,7 +229,6 @@ cc.Director = cc.Class.extend(/** @lends cc.Director# */{
228
229
230
//tick before glClear: issue #533
231
if (!this._paused) {
- this._actionManager.update(this._deltaTime);
232
this._scheduler.update(this._deltaTime);
233
cc.eventManager.dispatchEvent(this._eventAfterUpdate);
234
0 commit comments