针对所有子类 CCSprite (cocos2d)
我正在研究一种结束关卡的方法,但要做到这一点,我必须看到所有敌人角色都已被杀死。 如果我的敌人是CCSprites,我该如何制作一个方法来检测它们是否全部死亡?我正在使用一个名为“enemyHp”的整数来跟踪他们的健康状况。例如,这是我用来删除敌人的 if 语句 if (enemy.enemyHp <= 0) {
回顾一下 - 我想创建一个方法来检测所有敌人何时被杀死。
谢谢
I'm working on a method to end the level, but to do so, I have to see that all of the enemy character have been killed.
If my enemies are CCSprites, how do I make a method that detects if all of them are dead? I'm tracking their health with an int called enemyHp. For example, this is an if statement I made to remove the enemy if (enemy.enemyHp <= 0) {
To recap - I want to make a method that detects when all enemies have been killed.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须将这些精灵添加到数组(NSArray)中,然后循环该数组。
You would have to add those sprites to an array (NSArray) and then loop through that array.