Box2D 联系监听器?
我正在尝试在我的游戏中使用 Box2D 接触侦听器。我知道 Ray Wenderlich 有一个关于如何执行此操作的教程,但我发现它令人困惑,我想看看是否有人可以帮助向我解释如何执行此操作。
我是否需要专门为这个联系人监听器创建一个特定的类,或者它只是我的 CCScene 类中的几行基本代码?
有人可以对此提供一些见解吗?
谢谢!!!
I am trying to use the Box2D contact listener in my game. I know Ray Wenderlich has a tutorial on how to do this but I find it confusing and I wanted to see if someone could help explain to me how to do this.
Do I need to have a specific class just for this contact listener or can it just be a few basic lines of code in my CCScene class?
Can someone offer some insight on this?
Thanks!!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须为碰撞实现一个新类,或者根据某些标准(如标签号)说接触侦听器。我有一个例子给你。
// ContactListener.h
// ContactListener.mm
这是球和洞碰撞的示例。您可以根据您的要求使用它。
希望这会对您有所帮助。
谢谢!
仅检查一次碰撞:
You have to implement a new class for the collision or say contact listener based on some criteria as tag no. i have an example for you.
// ContactListener.h
// ContactListener.mm
This is an example of ball and hole collision. You can use this as per your requirement.
Hope this will help you.
Thanks!
to check the collision only for one time :