• 大小: 5KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-09
  • 语言: Html/CSS
  • 标签: cocos2d-x  源码  

资源简介

此代码为别踩白块儿源码,采用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


评论

共有 条评论