2012-08-24 81 views
2

我已經搜索了很多,一直沒有找到任何關於銷燬焊接接頭的指南或帖子。如何破壞bodyA和bodyB之間的焊接?我通過以下方式創建了我的weldJoint。如何銷燬焊接接頭

weldJointDef.Initialize(bodyA, bodyB, bodyA->GetWorldCenter()); 
    weldJointDef.collideConnected = false; 
    weldJoint = (b2WeldJoint*) world->CreateJoint(&weldJointDef); 

回答

2
world->DestroyJoint(weldJoint); 
+0

我們必須摧毀關節破壞身體前? –

+0

摧毀身體也會破壞任何與身體連接的關節。 – iforce2d