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.
我正在制作愤怒的小鸟游戏。目前我在屏幕一侧有 3 只鸟。每次我发射一只鸟时,我都想删除其中一个动画。如何通过 Xcode 在 sprite builder 中删除 CCNode?
如果您有与鸟动画的代码连接,您可以在鸟被发射时简单地将它们从场景中移除。如果 self 是动画所在的场景:
[self removeChild:birdAnimation];