cocos2d3.3不能播放cocostudio导出的粒子动画

前端之家收集整理的这篇文章主要介绍了cocos2d3.3不能播放cocostudio导出的粒子动画前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

cocostudio动画编辑器中加入粒子效果,cocos2d3.3在播放的时候报错: The value type isn't Type::MAP


在 CCDataReaderHelper.cpp 的 1335 行加上

方法中 void DataReaderHelper::addDataFromJsonCache(const std::string& fileContent,DataInfo *dataInfo)


std::string plistPath = filePath + ".plist";
std::string pngPath = filePath + ".png";

//增加下面两行就行
+ ValueMap dict = FileUtils::getInstance()->getValueMapFromFile(dataInfo->baseFilePath + plistPath);
+ if (dict.find("particleLifespan") != dict.end()) continue;

ArmatureDataManager::getInstance()->addSpriteFrameFromFile((dataInfo->baseFilePath + plistPath).c_str(),(dataInfo->baseFilePath + pngPath).c_str(),dataInfo->filename.c_str());

原文链接:https://www.f2er.com/cocos2dx/339109.html

猜你在找的Cocos2d-x相关文章