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.
我正在尝试将精灵从屏幕的顶部移动到底部,但此时我没有任何成功...我使用以下示例。
在这种情况下,精灵从左到右移动,在我的情况下,我想将它们从上到下移动。
谁能帮我解决这个问题?
我该如何继续进行这项工作?
使用 CCMoveToAction 移动精灵。用于精灵从上到下的移动
//to get total size of display CGSize winSize = CCDirector.sharedDirector().displaySize(); CCMoveTo moveTo = CCMoveTo.action(1, CGPoint.ccp(width, ));