博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
cocos2d-x 3.0 安装及创建项目
阅读量:5034 次
发布时间:2019-06-12

本文共 811 字,大约阅读时间需要 2 分钟。

版权声明:本文为博主原创文章,未经博主同意不得转载。 https://blog.csdn.net/LanerGaming/article/details/24146921

好久没实用过cocos2d-x,今天下载了最新版的3.0 rc2,可是怎么没找到安装模版的脚本。后来查了readme文件才发现,已经改用python脚本生产各个平台的项目,免去了开发人员创建多平台项目的麻烦,详细安装步骤參考官网文档,详细例如以下:

(mac下已经尝试成功)

Create A New Project

$ cd cocos2d-x$ ./setup.py$ source ~/.bash_profile # may be ~/.bash_login or ~/.profile, depends on your environemnt$ cocos new MyGame -p com.MyCompany.MyGame -l cpp -d ~/MyCompany
  • MyGame: name of your project
  • -p com.MyCompany.MyGame: package name for android
  • -l cpp: programming language used for the project, valid value is cppand lua
  • -d ~/MyCompany: directory to hold your project

new game

Folder structure of the generated project is as following:

folder structure

(Note: The directory may be different when the project type is lua.)

转载于:https://www.cnblogs.com/mqxnongmin/p/10494225.html

你可能感兴趣的文章
《构建高性能web站点》阅读笔记(三)
查看>>
零零碎碎写的脚本(一):一键添加用户脚本
查看>>
- > 强烈推荐!!!
查看>>
AcDream 1083 完美数 数位DP
查看>>
【Java自学】掷骰子游戏
查看>>
这些片段在Android编程中很有用
查看>>
C#遍历控件的方法
查看>>
DIV或者DIV里面的图片水平与垂直居中的方法
查看>>
正则表达式
查看>>
452 Minimum Number of Arrows to Burst Balloons 用最少数量的箭引爆气球
查看>>
STM32|4-20mA输出电路(转)
查看>>
iOS第一个简单APP
查看>>
Delphi iOS
查看>>
mybati之运行过程
查看>>
Python的几种循环
查看>>
我的程序员之路(6)——离职
查看>>
我的程序员之路(11)——离职3
查看>>
win7 插件
查看>>
bulk collect no_data_found exception
查看>>
jQuery闭包之浅见,从面向对象角度来理解
查看>>