这篇文章将为大家详细讲解有关cocos2d-x 代码片段有哪些,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。
cocos2d-x 代码片段积累 1.左右振动动作 CCPoint pointL=menuItem_buy->getPosition(); CCPoint pointR=menuItem_buy->getPosition(); pointL.x-=3; pointR.x+=3; CCMoveTo* moveLeft=CCMoveTo::create(0.08, pointL); CCMoveTo* moveRight=CCMoveTo::create(0.08, pointR); CCFiniteTimeAction* action= CCSequence::create(moveLeft,moveRight,moveLeft,moveRight,moveLeft,moveRight,NULL); menuItem_buy->stopAllActions(); menuItem_buy->runAction(action); 2.动作的复制 CCRepeat* action = CCRepeat::create(spawn, 50); CCRepeat* action2 = (CCRepeat*)action->copy()->autorelease(); CCRepeat* action3 = (CCRepeat*)action->copy()->autorelease(); 3.动作反转 CCActionInterval *rot1 = CCRotateBy::create(4, 360*2); CCActionInterval *rot2 = rot1->reverse(); 4.schedule的使用 调用: schedule(schedule_selector(SchedulerAutoremove::autoremove), 1.0f); schedule(schedule_selector(SchedulerAutoremove::tick), 0.5f); 终止 unschedule(schedule_selector(SchedulerAutoremove::autoremove)); 5. unscheduleAllSelectors(); 6.取屏幕中心宏 #define corner ccp(CCDirector::sharedDirector()->getWinSize().width/2,CCDirector::sharedDirector()->getWinSize().height/2)
关于cocos2d-x 代码片段有哪些就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。