使用cocos2d检测与敌人头部的碰撞
我想检测敌人头上的跳跃(就像超级马里奥一样)。我该怎么做?
如果你不明白我的意思就说点什么:)
我不需要使用cocos2d,但这样会更好:)
I want to detect a jump on an enemies head (like in super mario). How can I do this?
If you didn't understand what I mean just say something :)
I dont need to use cocos2d but it would be better with that :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我对 cocos2d 不熟悉,所以无法提供具体细节,但是:
如果您可以确定玩家与 NPC 发生碰撞,只需检查玩家的底部是否与 NPC 的顶部发生碰撞。如果是的话,他肯定是头着地了。
为了更加确定,您还可以检查玩家的速度是否表明他正在向下移动,但这可能没有必要。
I'm not familiar with cocos2d so I can't help with specifics but:
If you can determine the player collided with an NPC, just check if the bottom of the player is what collided with the top of the NPC. If it did, he must have landed on his head.
To be extra sure, you could also check if the player's velocity states that he's moving down but that's probably not necessary.