Size visiblesize = Director::getInstance()->getVisibleSize();
//创建1个精灵,显示其位置
Sprite * sp = Sprite::create("dl/yijiandenglu1.png");sp->setPosition(Point(50,visiblesize.height/2));
sp->setAnchorPoint(Point(0,0));
this->addChild(sp);
///////////////////////////////执行动作时间,移动的位置
MoveTo* moveto = MoveTo::create(0.9f,Point(250,150));
///////////////////////////////执行动作时间,X,Y轴移动的距离
MoveBy* moveby = MoveBy::create(0.9f,150));
sp->runAction(moveby);
MoveTo 和 MoveBy的区别点在于他们的第二个参数,MoveTo表示移动的位置,MoveByI表示x、y移动的距离。
原文链接:https://www.f2er.com/cocos2dx/345710.html