cocos2d-x 改变sprite图片

前端之家收集整理的这篇文章主要介绍了cocos2d-x 改变sprite图片前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
  1. //首先载入贴图集
  2. CCSpriteBatchNode*spriteBatch=CCSpriteBatchNode::batchNodeWithFile("snake.png");
  3. this->addChild(spriteBatch);
  4. CCSpriteFrameCache::sharedSpriteFrameCache()->addSpriteFramesWithFile("snake.plist");
  5. //生成Sprite
  6. CCSprite*headSprite=CCSprite::spriteWithSpriteFrameName("headup.png");
  7. //需要更换图片
  8. CCSpriteFrame*frame=CCSpriteFrameCache::sharedSpriteFrameCache()->spriteFrameByName("headleft.png");
    headSprite->setDisplayFrame(frame);
转载http://blog.csdn.net/weyson/article/details/7746492
原文链接:https://www.f2er.com/cocos2dx/342442.html

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