Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 android cocos2d 的新手,我后来使用 player1 和 player2 CCSprites n 创建了一个游戏,以便将 player1 和 player2 移动到精灵位置,它变得复杂。请提供我需要的文档或解决方案。
您必须使用 move to 动作来移动精灵,然后在播放器上运行该动作
CCMoveTo moveTo = CCMoveTo.action(0.5f, CGPoint.ccp(x, y)); mPlayer1.runAction(moveTo);
其中 x 和 y 是您想要移动精灵的点,0.ff 是完成该动作的时间间隔。