zoukankan      html  css  js  c++  java
  • cocos2dx 3.1从零学习(六)——CocosStudio(VS2013project导入及环境设置)

    导入libCocosStudio、libExtensions、libGUI

    新建的project例如以下图:


    加入现有项目

    右键解决方式。例如以下操作:


    分别加入下面三个项目:

    (project路径)cocos2dcocosuiproj.win32libGUI.vcxproj

    (project路径)cocos2dcocoseditor-supportcocostudioproj.win32libCocosStudio.vcxproj

    (project路径)cocos2dextensionsproj.win32libExtensions.vcxproj

    完毕后如图:



    加入引用:





    加入 附加包括文件夹。防止引入不了头文件:


    须要有:

    $(EngineRoot)cocoseditor-support
    $(EngineRoot)cocos
    $(EngineRoot)cocosaudioinclude
    $(EngineRoot)external
    $(EngineRoot)externalchipmunkincludechipmunk
    $(EngineRoot)extensions
    $(EngineRoot)
    ..Classes


    编译代码!

    编译错误及解决方式:

    1. 编辑器未更新

    C:Program Files (x86)MSBuildMicrosoft.Cppv4.0V120Microsoft.Cpp.Platform.targets(64,5): error MSB8020: The build tools for Visual Studio 2010 (Platform Toolset = 'v100') cannot be found. To build using the v100 build tools, please install Visual Studio 2010 build tools.  Alternatively, you may upgrade to the current Visual Studio tools by selecting the Project menu or right-click the solution, and then selecting "Upgrade Solution...".
    在新加入的项目 右键更新VC++编译器。注意报这样的错的项目名称右边会有(VS2010***)的提示,就更新吧!


    使用cocosstudio导出的project。

    #include "cocos2d.h"
    #include "cocostudio/CocoStudio.h"
    #include "ui/CocosGUI.h"
    using namespace cocos2d;
    using namespace cocostudio;
    using namespace ui;


    新手通过json文件读取控件的时候,注意它们的父子关系。不然会崩溃。

        //载入CocosStudio导出的资源
        auto uiLayer = GUIReader::getInstance()->widgetFromJsonFile("StartUI/StartUI.ExportJson");
        this->addChild(uiLayer);
    
        auto bg = uiLayer->getChildByName("bg");
        auto button =(Button *) bg->getChildByName("button");
        button->runAction(MoveBy::create(1, Point(-111, 0)));
        button->addTouchEventListener(this, toucheventselector(CocosStudio::onButton) );

    编译错误及解决方式:

    using namespace ui; 报错的话。在前面加上using namespace cocos2d ;就能够了。


  • 相关阅读:
    TCP握手建立与释放连接
    Oracle Golden Gate概要
    Hadoop Spark 基础教程
    #npm install# MSBUILD : error MSB4132: 无法识别工具版本“2.0”。可用的工具版本为 "4.0"。
    MySQL5.7 不同操作系统下的主从配置
    MongoDB authentication failed
    maven相关基础
    一次失败的定点漏洞挖掘之代码审计宜信Davinci
    记一次在tp5代码执行下的pcntl_exec瞎操作
    【CVE-2020-1957】shiro搭配spring时身份验证绕过漏洞分析
  • 原文地址:https://www.cnblogs.com/mfrbuaa/p/5074274.html
Copyright © 2011-2022 走看看