上一节说了背景的滚动,现在开始布置游戏中自己的飞机,为了使GameScene的代码不至于太多,可以吧自己的飞机进行封装,在GameScene中调用就好。创建Plane:
Plane.h:
#include "cocos2d.h"
USING_NS_CC;
class plane:public Node{
public:
@H_404_30@ int hp=100; @H_404_30@ int px,py;CREATE_FUNC(plane);
@H_404_30@ bool init(); @H_404_30@ void moveTo(int x,int y); @H_404_30@}; Plane.cpp:#include "plane.h"
@H_404_30@bool plane::init(){ @H_404_30@ if (!Node::init()) {return false;
@H_404_30@ } @H_404_30@ auto sp=Sprite::create("boss0.png"); @H_404_30@ sp->setTag(333); @H_404_30@ this->addChild(sp);return true;
@H_404_30@} @H_404_30@void plane::moveTo(int x,int y){this->getChildByTag(333)->setPosition(x,y);
@H_404_30@ this->px=x; @H_404_30@ this->py=y; @H_404_30@}在GameScene中调用
@H_404_30@首先在开始引用Plane.h @H_404_30@#include "Plane.h" @H_404_30@在init()中实例化: @H_404_30@ @H_404_30@bool gameScene::init(){ @H_404_30@ if (!Layer::init()) {return false;
@H_404_30@ } @H_404_30@ plane * p=plane::create(); @H_404_30@ this->addChild(p);p->moveTo(Director::getInstance()->getWinSize().width/2,200);
@H_404_30@ p->setTag(444);return true;
@H_404_30@} @H_404_30@这样在游戏场景中就出现自己的飞机了。