_world->DestroyBody(bodyB);不会破坏 iPhone 中 cocos2d 中的主体
这是代码:
for(NSValue *fixtureValue in fixtures)
{
b2Fixture *fixture;
fixture = (b2Fixture*)[fixtureValue pointerValue];
if(contact.fixtureA==fixture && contact.fixtureB == carFixture)
{
NSLog(@"Car hit outersquare!");
[redcar stopAction:moveAction];
_world->DestroyBody(bodyB); // does not destroy body
[self createCarBody];
speed = 0;
break;
}
}
please help...
This is the code :
for(NSValue *fixtureValue in fixtures)
{
b2Fixture *fixture;
fixture = (b2Fixture*)[fixtureValue pointerValue];
if(contact.fixtureA==fixture && contact.fixtureB == carFixture)
{
NSLog(@"Car hit outersquare!");
[redcar stopAction:moveAction];
_world->DestroyBody(bodyB); // does not destroy body
[self createCarBody];
speed = 0;
break;
}
}
please help...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“bodyB”来自哪里?你的意思是
或者类似的东西?
无论如何,我建议您使用 CCBox2D 将 Box2D 与 cocos2d for iphone 一起使用。
Where is 'bodyB' coming from? You mean
or something like that?
Anyway, I recommend you to use CCBox2D for using Box2D with cocos2d for iphone.