千家信息网

cocos2d-x 代码片段有哪些

发表于:2024-11-19 作者:千家信息网编辑
千家信息网最后更新 2024年11月19日,这篇文章将为大家详细讲解有关cocos2d-x 代码片段有哪些,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。cocos2d-x 代码片段积累1.左右振
千家信息网最后更新 2024年11月19日cocos2d-x 代码片段有哪些

这篇文章将为大家详细讲解有关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 代码片段有哪些就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

0