How do you stop box2d wobbling?

designpeg

  • *
  • Posts: 731
Hi, i've got a simple stack of boxes, physics friction set to 1, but they wobble and slide and overlap each others collision shapes as they topple over. Am I doing something wrong? is there a good guide anywhere for setting the physics values eg. mass etc for stencyl?

Apamaster

  • Posts: 129
in properties and in physics you have more options weight mass friction

merrak

  • *
  • Posts: 2738
Playing with the mass and friction is a good first step. At some point, though, math is going to be your culprit. If you've taken a course in calculus, then you're probably aware of the issues in finite difference approximations of the derivatives used in a physics model.

If you've never taken a course in calculus, the short version is this: The fewer frames per second you run the physics model at, the less stable and poorer the model is. You can raise Stencyl's default 100 ticks per second, although it comes at the cost of speed. There is another parameter, the arguments of world.step, that you can adjust. You'll have to go into Engine.hx to adjust them. Raising the parameters improves stability, but once again comes at the cost of speed.

Fortunately, there are other ways you can "help" the model achieve stabler towers that might even lower CPU requirements. The Joints Extension is a real help here, since you can use it to simulate mortar/glue/other binding materials used in real world structures. I found that a combination of using weld joints and a "foundation" (that can't move) greatly improves how large a structure you can build. You can even break the joint when an object is hit if you still want the structures to collapse.

Here's something I wrote up a few years ago with some more details on using the Joints Extension for towers. http://community.stencyl.com/index.php/topic,44376.30.html

designpeg

  • *
  • Posts: 731
All cool advice thanks! I especially like the joints for stability idea merrak. I'd experimented with sleeping the physics until they collide with my projectile, which makes everything  really stable, but leads to other issues.  Coan anyone explain the link between the mass setting and the size of the collission shape? I'm assuming mass is set for the whole object/actor, rather than a mass per area figure?