зеркало из https://github.com/microsoft/cocos2d-x.git
Fixed bug of action manager
This commit is contained in:
Родитель
0602410958
Коммит
b4466fab12
|
@ -110,10 +110,17 @@ ActionObject* ActionManagerEx::playActionByName(const char* jsonName,const char*
|
|||
}
|
||||
return action;
|
||||
}
|
||||
|
||||
|
||||
void ActionManagerEx::releaseActions()
|
||||
{
|
||||
_actionDic.clear();
|
||||
std::unordered_map<std::string, cocos2d::Vector<ActionObject*>>::iterator iter;
|
||||
for (iter = _actionDic.begin(); iter != _actionDic.end(); iter++)
|
||||
{
|
||||
cocos2d::Vector<ActionObject*> objList = iter->second;
|
||||
objList.clear();
|
||||
}
|
||||
|
||||
_actionDic.clear();
|
||||
}
|
||||
|
||||
}
|
Загрузка…
Ссылка в новой задаче