摘要:
//CCLabelTTF * label1 = CCLabelTTF::create("开", "Arial-BodMT", 16);CCLabelTTF * label2 = CCLabelTTF ::create("关", "Arial-BodMT", 16);// 创建CCControlSwitch 开关// 参数1: 掩饰底图// 参数2 作为打开状态// 参数3 作为关闭状态// 参数4 作为开关触发图// 参数5 作为打开的文字// 参数6 作为关闭的文字CCControlSwitch * pSwitc 阅读全文
摘要:
.cpp文件bool HelloWorld::init(){ ////////////////////////////// // 1. super init first if ( !CCLayer::init() ) { return false; } CCSize size = CCDirector::sharedDirector()->getWinSize(); CCScale9Sprite * sacel9SprY=CCScale9Sprite::create("green_edit.png"); CCEditBox * bo... 阅读全文
摘要:
// 菜单是游戏中必不可少的一部分的界面元素 在cocos2dx中封装了 ccmenu类// CCMenu * menu = CCMenu ::create();创建方式// 5中创建CCMenuItem // CCMenuItemFont// 参数1 显示的文字 参数2 触发的目标对象 参数3 触发的目标函数 CCMenuItemFont * itemfont = CCMenuItemFont::create("开始游戏", this,menu_selector(HelloWorld::menuFun)); itemfont->se... 阅读全文