0

我是 android cocos2d 的新手,我后来使用 player1 和 player2 CCSprites n 创建了一个游戏,以便将 player1 和 player2 移动到精灵位置,它变得复杂。请提供我需要的文档或解决方案。

4

1 回答 1

1

您必须使用 move to 动作来移动精灵,然后在播放器上运行该动作

    CCMoveTo moveTo = CCMoveTo.action(0.5f, CGPoint.ccp(x, y));
    mPlayer1.runAction(moveTo);

其中 x 和 y 是您想要移动精灵的点,0.ff 是完成该动作的时间间隔。

于 2013-03-20T11:05:15.967 回答