資源簡介
此代碼為別踩白塊兒源碼,采用cocos2d-x-3.0制作。詳細文章,可以參考:http://blog.csdn.net/column/details/notouchwhiteblock.html 多謝支持

代碼片段和文件信息
#include?“AppDelegate.h“
#include?“HelloWorldScene.h“
USING_NS_CC;
AppDelegate::AppDelegate()?{
}
AppDelegate::~AppDelegate()?
{
}
bool?AppDelegate::applicationDidFinishLaunching()?{
????//?initialize?director
????auto?director?=?Director::getInstance();
????auto?glview?=?director->getOpenGLView();
????if(!glview)?{
????????glview?=?GLView::create(“My?Game“);
????????director->setOpenGLView(glview);
????}
????glview->setframeSize(320480);
glview->setDesignResolutionSize(320480ResolutionPolicy::SHOW_ALL);
????//?turn?on?display?FPS
????director->setDisplayStats(false);
????//?set?FPS.?the?default?value?is?1.0/60?if?you?don‘t?call?this
????director->setAnimationInterval(1.0?/?60);
????//?create?a?scene.?it‘s?an?autorelease?object
????auto?scene?=?HelloWorld::createScene();
????//?run
????director->runWithScene(scene);
????return?true;
}
//?This?function?will?be?called?when?the?app?is?inactive.?When?comes?a?phone?callit‘s?be?invoked?too
void?AppDelegate::applicationDidEnterBackground()?{
????Director::getInstance()->stopAnimation();
????//?if?you?use?SimpleAudioEngine?it?must?be?pause
????//?SimpleAudioEngine::getInstance()->pauseBackgroundMusic();
}
//?this?function?will?be?called?when?the?app?is?active?again
void?AppDelegate::applicationWillEnterForeground()?{
????Director::getInstance()->startAnimation();
????//?if?you?use?SimpleAudioEngine?it?must?resume?here
????//?SimpleAudioEngine::getInstance()->resumeBackgroundMusic();
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件???????1476??2014-05-12?15:35??Classes\AppDelegate.cpp
?????文件????????947??2014-04-01?18:48??Classes\AppDelegate.h
?????文件???????1740??2014-05-09?16:13??Classes\Block.cpp
?????文件????????714??2014-05-09?16:13??Classes\Block.h
?????文件???????3960??2014-05-12?15:40??Classes\HelloWorldScene.cpp
?????文件???????1095??2014-05-12?11:00??Classes\HelloWorldScene.h
?????目錄??????????0??2014-05-08?18:52??Classes
-----------?---------??----------?-----??----
?????????????????9932????????????????????7
評論
共有 條評論