cocos2d-x CCSprite

来源:网络 责任编辑:栏目编辑 发表时间:2013-07-01 19:20 点击:

 

 


01 //CCSprite
02 
03     //释放到目前为止所有加载的图片
04     CCTextureCache::sharedTextureCache()->removeAllTextures();
05     //加载图片
06     CCSprite *sprite = CCSprite::spriteWithFile("yy.png", CCRectMake(112*0, 64*0, 112, 64));
07     //停止所有动画
08     sprite->stopAllActions();
09     //启动动画
10     sprite->runAction(animate);
11     //播放一次
12     sprite->runAction(CCRepeat::actionWithAction(_animate_go, 1));
13     //重复播放
14     sprite->runAction(CCRepeatForever::actionWithAction(_animate_go));
15 
16     CCAnimate *animate;
17     aimate->stop();  //停止动画
18 
19 
20     //延时调用
21     CCFiniteTimeAction *action1 = CCMoveBy::actionWithDuration(1.0f, ccp(200, 200));
22     CCFiniteTimeAction *action2 = action1->reverse();
23     sprite->runAction(CCSequence::actions(action1, CCDelayTime::actionWithDuration(1.0f), action2, NULL));
24 
25    www.2cto.com
26 //函数调用 CCCallFunc
27 void YY::Hello()
28 {
29     CCLog("Hello, this your world!\n");
30 }
31 
32 void YY:Action()
33 {
34     sprite->stopAllActions();
35     CCSpriteFrameCache *sfcache = CCSpriteFrameCache::sharedSpriteFrameCache();
36     sfcache->addSpriteFramesWithFile("yy/yy.plist");
37     CCMutableArray<CCSpriteFrame*> *anim_frames = new CCMutableArray<CCSpriteFrame*>();
38     char tmp[50];
39     for (int j = 0; j < 6; j++)
40     {
41         sprintf(tmp, "yy_%d.png", j);
42         CCSpriteFrame *frame = sfcache->spriteFrameByName(tmp);
43         anim_frames->addObject(frame);
44     }
45 
46     CCAnimation *animation = CCAnimation::animationWithFrames(anim_frames, 0.1f);
47     anim_frames->release();
48 
49     CCAnimate *animate = CCAnimate::actionWithAnimation(animation, false);
50     CCFiniteTimeAction *action = CCCallFunc::actionWithTarget((CCObject*)this, callfunc_selector(YY::Hello));
51     sprite->runAction(CCSequence::actions(animate, action, NULL));
52 }

 

作者:雲瑜

    相关新闻>>

      发表评论
      请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
      用户名: 验证码:点击我更换图片
      最新评论 更多>>

      推荐热点

      • cocos2d-x学习笔记(19)--label 、label atlas
      • cocos2d-x学习笔记(23)--地图的使用3--CCTMXLayer
      • Cocos2d-x学习(一):HelloWorld
      • cocos2dx在xcode下开发,编译到android上(2)
      • cocos2d 设置屏幕默认方向
      • Cocos2d-x 2.0 之 Actions “三板斧” 之一
      • cocos2d-x学习笔记(22)--地图的使用2(TMX) --Z-Order、AnchorPoi
      • cocos2d-x学习笔记(18)--游戏打包(windows平台)
      • cocos2d-x学习笔记(16)--spritesheet(精灵表单)
      网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
      Copyright © 2008-2015 计算机技术学习交流网. 版权所有

      豫ICP备11007008号-1