.pvr.ccz 文件读取


.pvr.ccz 文件读取

修改 CCDataReaderHelper.cpp

1
2
3
4
5
6
7
8
void DataReaderHelper::addDataFromJsonCache(const std::string& fileContent, DataInfo *dataInfo)
方法里面
std::string plistPath = filePath + ".plist";
std::string pngPath = filePath + ".png";
后面添加下面代码
if (!FileUtils::getInstance()->isFileExist(dataInfo->baseFilePath + pngPath)) {
pngPath = filePath + ".pvr.ccz";
}