CCSprite可以在多个动画之间切换吗?
是否可以使 CCSprite 在两个不同的动画之间切换? (两者都是 CCRepeatForever)
我尝试使用 stopAction: 和 runAction: 但它会使应用程序崩溃。 我只能将pauseSchedulerAndActions: 和resumeSchedulerAndActions: 与一个动画一起使用。
Is it possible to make a CCSprite switch between two different animations? (both are CCRepeatForever)
I try to use stopAction: and runAction: but it crashes the app.
I can only use pauseSchedulerAndActions: and resumeSchedulerAndActions: with one animation.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
回答你的问题:是的。如果切换动画对您来说很麻烦,请为每个动画使用一个精灵,并将它们全部更新到同一位置,并且仅将应播放动画的那个精灵设置为可见。
这次事故肯定是无关的。
To answer your question: Yes. If switching animations troubles you, use one sprite for each animation and keep them all updated to the same position, and only set the one to visible whose animation should be played.
The crash is certainly unrelated.