You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Object._deferredDestroy is called after component update in Director.tick and before emitting BEFORE_DRAW event in which MiddlewareManager::render is invoked,
87
92
// so the native object may be released here and it needs to be erased from _updateList.
88
-
for (auto &iter : _operateCacheMap) {
93
+
for (auto &iter : _operateCacheQueue) {
89
94
auto it = std::find(_updateList.begin(), _updateList.end(), iter.first);
0 commit comments