摘要:基类定义纯虚方法: 在子类的.h文件中,基类名上右键-快速操作和重构-实现基"xxx"的纯虚方法
阅读全文
摘要:#ifndef __GAME_DATA_H__ #define __GAME_DATA_H__ #ifndef GAME_IS_CREATE_SHOP #define GAME_IS_CREATE_SHOP 1 #endif#endif //使用方法 #include "GameData.h" #if GAME_IS_CREATE_SHOP //你的代码 #endif
阅读全文
摘要:1.多文件帧序列动画 TrademarkAnimation.h TrademarkAnimation.cpp 2.plist文件创建动画
阅读全文
摘要:1.使用标准库std::rand()函数 2.使用cocos2d::random()函数
阅读全文
摘要:Label::_label; if(_label==NULL){ //初始化_label的代码 } //指针默认值不等于NULL,需要赋初始值Label::_label=NULL; string str="name is lao wang"; cocos2d::log(str);//这是错误的 cocos2d::log("%s",str);//这是错误的 cocos2d::log(str....
阅读全文
摘要:Ctrl+Shift+Q Ctrl+Shift+M
阅读全文
摘要:1.将cocos2d-x-3.10\tests\cpp-tests\Classes\Box2DTestBed目录下的GLES-Render.h和GLES-Render.cpp拷贝到当前项目的Classes目录下。 2.在visual studio2013打开当前项目解决方案,在解决方案资源管理器的s
阅读全文
摘要:比如在Test.h中定义变量: _isFirst;//Test.h头文件#ifndef __TEST_H__#define __TEST_H__class Test{private: bool _isFirst;};#endif然后访问它:#include "Test.h"#include "...
阅读全文
摘要:ClassA* csList = new ClassA[1];ClassA ca = csList[0];ca.x=10;CCLOG("caList[0].x %f",csList[0].x);//output: caList[0].x -431602080.000000将csList[0]赋值给c...
阅读全文