Tag: Box2d

Calculate closest point of box2d body in libgdx

In this tutorial we will calculate closest point of a contact of a body from another point in box2d in libgdx. In last two tutorials, one using BoundingBox and other using Raycast we queried box2d to get list of nearby

Tagged with: , ,

Add Explosion in Box2D using Raycast in libgdx

In the previous tutorial, we added an option to get list of bodies around the player using QueryAABB method present in box2d in libgdx. This method gives list of all bodies in a bounding box. So it is helpful in

Tagged with: , ,

Add Explosion in Box2D using BoundingBox in libgdx

In the previous tutorial we added a rotating shield to our player. The shield object would move in uniform circular speed around the player object. The shield was a kinematic body so that we can set velocity every frame to

Tagged with: , ,

Move Box2d Body In Circular Path in Libgdx

Recently there was a need to have a body rotate around another moving body, sort of like a shield. To achieve this functionality, initially we thought of using a revolute joint, available in box2d in libgdx. For revolute joint we

Tagged with: , ,

Edge Shape in Box2d

Hi, We have been working on a new 2d libgdx platformer game for sometime now and it is coming along nicely. While working on it we found the need to add an edge shape rather a rectangle for our platforms.

Tagged with: , , , , , ,

Box2d Revolute Joint Example

Hi, In our upcoming android game we are adding some box2d joints and in this post we would be creating a revolute joint. We are using Libgdx engine to make the game. Below is a screenshot of what  it looks

Tagged with: , , , , , , ,

Using Box2d Debug Renderer in Libgdx

This is an update to the older example (“using Box2d in Libgdx”) we put in the post here. We added box2d debug renderer to the code which is very simple to add and useful in seeing how box2d objects look

Tagged with: , , , , ,

Moving Platforms in Box2d in a Specified Path

Hi, In one of the previous post we moved a platform from a point A to point B and then back to point A and so on. In this post we would expand on it and move it in specific

Tagged with: , , , ,

Box2d/Libgdx Example Code

Hi, We are uploading source code of a simple box2d-libgdx example. Here is the File In the attachment you would find three projects :- BoxLibgdxExample BoxLibgdxExample-desktop BoxLibgdxExample-android UPDATE :- The example now contains box2d debug renderer also which can be used

Tagged with: , , , , ,

Moving Platforms in box2d

Hi, In this post we would me making moving platforms in box2d. In most of the games especially platformers we have these moving objects which would go on a specific direction for a fixed distance and come back. A Static

Tagged with: , , ,
Top