资源简介
此代码为别踩白块儿源码,采用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
相关资源
- 中秋博饼源码html+js
- html5用canvas制作3D烟花效果源码
- HTML5翻牌对对碰游戏源码
- AI智能web纯前端html+js实现的照片动起
- HttpHelper 苏飞万能框架 V1.9.0.6 源码
- HTMl5网上订餐管理毕业设计源码.rar
- 骰子游戏源码 html5 手机端 游戏
- HTML5贪食蛇网页游戏代码源码
- 网上订餐系统模板html源码
- HTML5养成游戏《我和小狗的一天》源码
- 为自己做的记账本源码及安装包
- Bootstrap左右结构响应式后台管理 htm
- HTML5 Canvas实现3D旋转物体动画及模糊发
- iOS 微信支付源码及SDK
- Html5联动菜单,仿美团外卖菜单栏.r
- webqr.com页面源码
- H5 2048游戏源码
- Html5游戏开发集锦
- 20个小程序
- HTML5 CSS3 淡入淡出动画效果的Tab菜单特
- 在线生成二维码源码2017版
- 精美html5登陆界面源码,开源源码,可
- 6个html5手机游戏源码
- HtmlAgilityPack1.8.5所写的根据URL解析网页
- HTML炫酷特效源码
- 2种非常漂亮的信息系统管理界面及框
- app页根据需求自己改
- weui微商城源码模板.zip
- html斗地主源码
- HTML5 斗地主源码.rar
评论
共有 条评论