2011-07-14 80 views
0

我創建一個地面體是這樣的:Box2D的靜態物體摩擦

// Define the ground body. 
    b2BodyDef groundBodyDef; 
    groundBodyDef.position.Set(0, 0); // bottom-left corner 

    // Call the body factory which allocates memory for the ground body 
    // from a pool and creates the ground box shape (also from a pool). 
    // The body is also added to the world. 
    b2Body* groundBody = world->CreateBody(&groundBodyDef); 

    // Define the ground box shape. 
    b2PolygonShape groundBox; 

    // bottom 
    groundBox.SetAsEdge(b2Vec2(0,0), b2Vec2(screenSize.width/PTM_RATIO,0)); 
    groundBody->CreateFixture(&groundBox,0); 

    // top 
    groundBox.SetAsEdge(b2Vec2(0,screenSize.height/PTM_RATIO), b2Vec2(screenSize.width/PTM_RATIO,screenSize.height/PTM_RATIO)); 
    groundBody->CreateFixture(&groundBox,0); 

    // left 
    groundBox.SetAsEdge(b2Vec2(0,screenSize.height/PTM_RATIO), b2Vec2(0,0)); 
    groundBody->CreateFixture(&groundBox,0); 

    // right 
    groundBox.SetAsEdge(b2Vec2(screenSize.width/PTM_RATIO,screenSize.height/PTM_RATIO), b2Vec2(screenSize.width/PTM_RATIO,0)); 
    groundBody->CreateFixture(&groundBox,0); 

如何設置它的摩擦? 謝謝。

回答

1

您需要從夾具定義(b2FixtureDef)創建夾具,您可以在其中設置特定的摩擦力。事情是這樣的:

b2FixtureDef fixtureDef; 

fixtureDef.shape = &groundBox; 
fixtureDef.density = 0.0f; 
fixtureDef.friction = YOUR_FRICTION_VALUE; 

groundBody->CreateFixture(&fixtureDef); 
+0

難道說,我得到一個語義問題: /HelloWorldLayer.mm:錯誤:語義問題:分配給來自不兼容的類型「b2BodyDef *」 – deMangoes

+0

我已經編輯「常量b2Shape *」我的回答,現在它應該工作。您也可以參考Box2D文檔:http://www.box2d.org/manual.html#_Toc258082968 – Oleg