2011-07-14 82 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