标签:cocos2d cocos2d-x cocos2dx 手机网游 地图
使用TexturePacker打包多张小图
1、将多张小图拖动到TextPacher中。
2、定义导出格式
导出plist文件名,导出合成图的png文件名
3、选择publish发布
生成一个xxx.plist和xxx.png
4、拷贝这两个文件到Rescoures目录
5、使用SpriteFrameCache一次性加载到缓存
SpriteFrameCache::getInstance()->addSpriteFrameWithFile("xxx.plist");
SpriteFrameCache *sf=SpriteFrameCache::getInstance()->getSpriteFrameByName("key");
//key就是第一步拖动过去的小图片的文件名
版权声明:本文为博主原创文章,未经博主允许不得转载。
标签:cocos2d cocos2d-x cocos2dx 手机网游 地图
原文地址:http://blog.csdn.net/u013370540/article/details/47439269