Box2D is a free open source 2-dimensional physics simulator engine written in C++ by Erin Catto and published under the zlib license
0
votes
1answer
42 views
Apply Interaction using Box2d in iPhone App
I am currently using box2D and UIKit to create an app. Gravity is working great with the objects that I have added. However, I would like the objects to have user interaction through touches. Most of ...
-2
votes
1answer
156 views
How to move a car with a constant speed. Code for moving any object with a constant speed [closed]
i just started learning on andEngine. i have taken this code from andEngine examples, i want a car to move itself in a linear direction. then i am planing to control it by sensores.but first i want a ...
3
votes
1answer
401 views
How to add Box2d to an existing Xcode/Cocos2d Project
I have a working Xcode project that includes Cocos2d in one of the views. I now need to add Box2d. I tried dragging the Box2D folder into the libs directory of my cocos2d-2.x-ARC-iOS folder and adding ...
1
vote
1answer
106 views
Unique Bodies In AndEngine Box2D
I want to create an unique physics body for use on a sprite. This sprite will need to have two portions where there is a colliding surface and an open space.
Example:
In the example provided ...
0
votes
2answers
118 views
In Box2D ball bouncing before hitting the floor
I implemented a basic box2d project in iOS with a bouncing ball, but the ball seems to bounce before it actually reaches the ground. On each progressive bounce it seems to get closer to the bottom and ...
0
votes
0answers
79 views
Rotating a physics world infinitely CW and CCW Levelhelper cocos2d
I have a big square sprite which is a kinematic body with a hole in it.
Inside the square there are dynamic bodies attached to the big square. So when I rotate the world they rotate with it. The world ...
1
vote
0answers
118 views
Drag objects with Box2D, Cocos2D and Android
I need to create a simple game in which one object moves on the screen based on touch (mouse) events. In other words I want to be able to drag it on an Android machine's screen.
Looking everywhere ...
0
votes
1answer
51 views
Object passes through object Box2d
I have two objects...One static and one dynamic (it is a ball). Static object have polygon shape. Sommethimes when I hit the ball, ball passes through static object :(. I have played with density and ...
0
votes
0answers
103 views
Moving sprite body in box2d using accelerometer
I'm trying to make 2 dynamic sprites in my scene collide. Sprite A moves with the use of physics and gravity (it's a ball) while Sprite B moves with the use of accelerometer (a paddle).
My problem ...
0
votes
0answers
72 views
Collision Detection in Box2d not detected properly
Following the ray wenderlich's tutorial, I am trying to detect the collision between two sprites and between 1 sprite and the bottom screen. Here's the code:
- (void)update:(ccTime) dt {
...
0
votes
0answers
79 views
using revolute joint from box2d to create a seesaw - not working as expected
without the revolute joint the seesaw will balance properly when 2 objects from each end with same density are placed.
in this setup with a revolute joint in place -
a. the seesaw's bar has a ...
0
votes
1answer
22 views
Make teeter in Box2d
Does anyone knows how can I make teeter with Box2d. I was looking joints, but no some real success how achieve this. The big problem is how to fix plank to some object (on half of plank)
0
votes
1answer
60 views
How to change the Bodies and sprites on the fly? Box2d
I'm starting to develop now and came across a problem: I have a body that is a rock and when it initiate contact with another body (which would be a character), would like to replace that body for ...
1
vote
1answer
69 views
AndEngine Library Can't Reference Physics
I just installed AndEngine on Eclipse and when I use the following code it won't reference some of the classes. I imported everything from andengine and it still will not find some of it. Body and ...
1
vote
2answers
76 views
How do you change the edges of a ground fixture in a box2d ground body
During game play, I would like to be able to change the ground edges in a Box2D world. I have created a ground body and then I am adding a ground fixture to the body. For example, the following code ...
0
votes
3answers
76 views
Layers in physics or what is it (look at the image)?
I need to move an object on track when obj getting into track, but at the same time, it could easily pass under it.
I don't know how it called. And I'm looking for name of this procedure.
0
votes
1answer
76 views
Achieve joint break when more than certain force is applied
I have two dynamic bodies attached together with a revolute joint. Both of the bodies are also connected to a static body on the other ends. I need the joint between the two dynamic bodies to break ...
0
votes
1answer
191 views
How to resolve performance lag while moving objects with Box2D JS physics engine in Android browser?
I am in planning of developing HTML5-Canvas based cross platform game targeting Android and iPhone platforms using Box2D js framework. My game contains some of good physics moves, thus I chose Box2D ...
0
votes
0answers
31 views
Keeping sprite within screen edges when using Accelerometer
I've recently started using box2d and c++ so I'm still trying to understand how it works. Right now, I'm trying to make the accelerometer work and this is the code I came up with:
...
0
votes
1answer
109 views
box2d gravity player fall down faster
I'm developing game with box2d for mobile.I created a world by these codes:
b2Vec2 gravity(0.0f, 9.8f);
bool doSleep = false;
b2World* g_World = new b2World(gravity, doSleep);
it's working so ...
0
votes
0answers
131 views
Using PhysicsEditor to create unique bodies for collisions in box2d (AndEngine)
I've been developing a game recently and I would like to incorporate pixel perfect collisions (so it ignores the alpha part of the image)
After doing some research I was referred to using the ...
1
vote
0answers
44 views
Jump function in box2d
I'm developing a game on Box2d world. I have player on screen and there is a ground body on bottom of screen.I wanna make "jump" function.I looked many examples but i couldn't find what i want.For now ...
0
votes
0answers
75 views
Box2D CreateBody returns invalid pointer, causes segfault
I'm working on a Box2D project and I keep getting a segmentation fault. Here is the problem code :
PhysicsObject::PhysicsObject(b2World *w, sf::Texture& tex, int sX,
int sY, b2BodyDef bodyDef, ...
1
vote
2answers
142 views
Rending of 1-pixel thin line with AndEngine and Box2D
I create a PhysicsWorld in the following manner:
this.mPhysicsWorld = new FixedStepPhysicsWorld(30, new Vector2(0, 0), false, 8, 1);
And I create a line in the following manner:
final Line line = ...
1
vote
0answers
143 views
How do I create a “jump” effect using AndEngine and Box2D
I am developing a game similar to the angry birds in AndEngine using the Box2D extension.
My goal is for the animated sprite to jump (like in angry birds) and have it bounce multiple times, depending ...
0
votes
1answer
51 views
When user hit ball make it like elipse
How cant i make with cocos2d and box2d, when I hit with eg. paddle a some ball, ball will change shape to look like elipse, if you know what i mean. If I hit ball with bigger force, ball will be more ...
2
votes
1answer
172 views
How do I bounce, move, and jump a sprite simultaneously in AndEngine
I am looking to move a sprite in the same manner as in this video. I am using AndEngine. How do I move that ninja(sprite), complete with move and jump, using the AndEngine Box2D physics extension.
...
2
votes
1answer
401 views
When to use ShapeRenderer, Mesh + SpriteBatch, Box2D and Scene2D in Libgdx?
I'm new in Android Gaming and after I started with ShapeRenderer and did a little more search and I became confused if I started with the right foot.
So, what I really would like to know is when ...
0
votes
0answers
37 views
Box2D browser window scroll
I have used Box2D to create balls which can be dragged around within a certain area. However, when I scroll the window the interaction breaks. Visually, the balls scroll with the window, but once I ...
1
vote
0answers
54 views
Having problems seeing polygons in my cocos2d code. Using cocos2d and box2d. Only in debug mode the actual polygons are visible
So I need help figuring out what code I am missing here. I have checked all over the place, but I need specifics on wether its the formulas used or a typo that i haven't noticed yet.
Here is the ...
0
votes
1answer
158 views
Box2DPhysicsObject strangeness in Citrus engine
If i just create a new Box2DPhysicsObject, it runs perfectly.
If i override its functions like this:
public class CarObject extends Box2DPhysicsObject
{
private const ...
0
votes
1answer
95 views
Change world boundaries with window resize
I'm new to Box2D, and working on a first project using EaselJS along with Box2DWeb. I'm hoping to have the standard static shapes that comprise the walls and floor of the world to move/update along ...
0
votes
1answer
99 views
Polygon inside polygon in libgdx and box2d
I'm new in libgdx and box2d and I would like to know if there's an easy way to put a polygon randomly inside the bounds of another polygon.
EDIT
I want something like this:
Where the black ...
0
votes
0answers
34 views
How do I create an opposite impulse during post-solve?
In my game I need a collision to occur but one of the bodies in the collision to not be affected by it. My idea was to apply an opposite impulse during each post solve to balance out each collision ...
1
vote
1answer
140 views
box2d, setTransform and collisions
I'm using body.setTransform to move some of my objects around.
I know it's bad, but it is just the way it needs to be in my case -
bodies follow certain paths. When such a body is hit by a bullet
it ...
0
votes
0answers
85 views
box2d how to rotate polygon with offset without changing polygon angle?
Sorry, it's hard to explain what I want to do, here is pic that describes it better:
My code:
b2BodyDef myBodyDef23;
myBodyDef23.type = b2_kinematicBody;
b2PolygonShape polygonShape23;
...
0
votes
1answer
58 views
Box2D Contact Filter not triggering for bodies created on top of other bodies
I have a box2d setup for an Android game, using the port from LibGDX.
I'm using a Contact Filter to allow some bodies to pass through each other. However, when I create one such body at a location ...
0
votes
0answers
40 views
Tile/repeat CCSprite over all b2Body area
I am creating a randomly sized rectangle in my game. I want to set a texture to it (texture size is 64x64) and have it repeat all over the rectangle. The rectangle is a b2body. I've managed to add a ...
0
votes
1answer
93 views
Slow Rendering in Mdpi and Ldpi android phones
Hi,
I am developing a game with the help of LibGDX and using Box2d in it. The problem is that when run my game on hdpi or tablets it run fine but in case of ldpi and mdpi the box2d bodies are not ...
0
votes
0answers
68 views
Box2d Sprite displays not in center of polygon
I have a weird problem when add sprite to custom polygon, it displays not in center of polygone but in left-top side.
Like on that picture: http://pbs.twimg.com/media/BC8onkHCUAAwMVM.png:large
//4th ...
0
votes
0answers
140 views
increase fps on ios using libgdx
I am developing an android game using box2d and its running fine on android phones and tablets. When running the game on iOS devices like the iPhone or iPad performance get pretty bad. I am getting 60 ...
0
votes
0answers
36 views
special effect at the time of collision of two box2d objects
I want to give some special effect at the time of collision of two box2d objects so that one of the object gets destroyed into chunks. Please tell me how to do this using javascript.
0
votes
0answers
89 views
how to create long press button in cocos2d
here i created body for boySprite. i want to move the boyBoy front side and back side using button. "if i press button body will move and when i release the button body moving will stop. how to do ...
0
votes
0answers
78 views
Collision detection Fail in Box2d
I want to detect collision between bodies, one body has circle shape and 30+ have convex body. Maybe problem is because of detecting collision between circle and convex? Please help, can't find the ...
0
votes
1answer
51 views
how to fix body in y angle zero in box2d
I am doing one game. in that moving boy sprite with body created. the boy body when move front side or back side that will falling down.
How fix the body y axis 0?
CCSprite ...
0
votes
1answer
262 views
LIBGDX Newest Testbed for Box2d
I'm testing the newest Box2d Testbed using Libgdx. It appears they aren't working and need to know if anyone else is having the same issue(s). The first one is called Conveyor Belt, ...
1
vote
1answer
40 views
Farseer accessing a class from OnCollision
I'm using Farseer for physics in a game, and have several key classes: Planet and PlanetProp. Each planet has a large circular body and a "field". This field is a large sensor around the body. ...
1
vote
1answer
179 views
Physics Body pass through each
I am working on little project with Andengine+Box2D.I have a player character and a ground.Ground is a StaticBody and plyaer is DynamicBody. I want an effect that a person is walking on the ground.
...
1
vote
0answers
44 views
Line Joint accelerate wheel
I am using box2d line joint, to simulate wheel with suspension, but I can not manage to accelerate properly.
My joint code:
LineJointDef fJointDef = new LineJointDef();
...
0
votes
1answer
50 views
Is it possible in OpengGL to insert a transformation to a matrix before the existing transformations? (prefix multiplication)
To give some background on the issue I am using Box2D and am trying to use the built in debug draw functionality to create a debug overlay that will allow me to see the physics bodys' actual shapes ...

