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
2answers
25 views
box2d debug draw not working
I'm trying to use box2d's debug draw in an IOS project, using what seems like the correct code, but nothing is showing on the screen. This is the code:
b2Vec2 gravity = b2Vec2(0.0f, 0.0f);
_world = ...
-1
votes
1answer
12 views
How to create a collidable circle in cocos2d?
I have looked throughout the Internet and other questions on this site, but I can't seem to find the answer. What I want to ask is that is there some sort of simple way that I can create a circle, ...
-1
votes
0answers
14 views
libandenginephysicsbox2dextension.so is getting crashed [closed]
in my game when i make body and after creating some number of bodies libandenginephysicsbox2dextension.so file close the game without any force close prompt and print a long logcat data like this
...
3
votes
1answer
36 views
Collision in Libgdx box2D failing for some bodies
I'm working on my first game using libgdx with box2d. I'm using the debug renderer to test my objects. I created some car like objects. Each car has a main body, which is a large polygon of 6 points ...
0
votes
1answer
19 views
Box2D Body is not removed immediately (LibGDX Android)
I am learning libGDX on android. I am trying to remove body from world after collision. But, some times, bodies are not removed immediately, it takes 2-3 seconds to remove properly.
private void ...
0
votes
1answer
38 views
Moving a sprite by touching anywhere on the screen
In my game only one sprite responds to touches. How can I make a mousejoint move this sprite/body regardless of where I touch on the screen?
1
vote
2answers
53 views
body null when accessed from another method
I have a contact listener that handles contact between two box2d bodies. I am accessing the bodies from the Contacter in the HelloWorldLayer since box2d recommends that contacting bodies should be ...
1
vote
2answers
30 views
andengine setposition of animatedsprite
with andengine I'm trying to create a Footbal Game,
When the ball go in goal and dissapears from the screen, I would like to update score and reposition the ball at the center of the screen.
Update ...
1
vote
1answer
188 views
Android Studio (Intellij) Compile Errors
I'm playing about with Android Studio using AndEngine and the Box2D plugin and I can't seem to get it to compile. I've attached a few photos of what I believe to be the relevant settings and messages.
...
0
votes
0answers
17 views
libgdx box2d mouse joint example
I'm trying to create a game in which user can drag dynamic bodies with a finger.
I searched some examples for a while and I understand that what I need is mouse joint, but while I'm new in libgdx and ...
0
votes
0answers
25 views
Box2D collision causes huge FPS drop
I'm playing with Box2Dweb and HTML5 canvas, and are experiencing some odd behaviour.
I have one dynamic body and one static body, in the world. I can control the dynamic one with my keyboard.
But as ...
0
votes
0answers
9 views
Resizing Fixtures - Use Counturs from OpenCV as psychical objects in Box2D
I am trying to create very simple Kinect floor game, in which I want to have rectangle counture from detected blob to interact with predefined objects. While I develop it as XNA application I tried to ...
0
votes
2answers
29 views
Box2D: sticky wall issue in pool game using wck
I'm new to Box2D, I'm using World Construction Kit, and I have the following problem: The ball is sticking to walls at low velocity.
So I read a lot of threads talking about this issue and found that ...
0
votes
0answers
35 views
issues creating a class that handles contacts
All along I have been handling contacts within the CCPhysicsSprite class since I mainly set the userdata to a CCPhysicsSprite. As below:
ContactListenerClass.mm:
void ContactListenerClass:: ...
0
votes
1answer
32 views
Box2d Collision Detection with Arrays
I'm developing in AndEngine I have nearly completed my game, but unfortunately, it suffers from a low fps occasionally due to the fact that I am checking .collideswith a lot in my update loop. I now ...
1
vote
1answer
130 views
How to change the center of mass?
I am try
MassData md = mBody.getMassData();
md.center.set(2f, 0); mBody.setMassData(md);
But this is not working properly. Help me do this correctly.
I want add a bit more weight to the bottom ...
0
votes
0answers
13 views
CCFollow not following
I'm building a game with cocos2d and box2d and trying to use CCFollow, using the tutorial code out there. (http://www.learn-cocos2d.com/tag/ccfollow/)
But it's not working. My code:
CGSize winSize ...
0
votes
0answers
22 views
360 degree gravity game mechanic like “They Need To Be Fed” game
I am a fan of "They Need To Be Fed" game and I want to understand the game mechanic at a deeper level. What are some good resources for the basic Box2d (or similar) physics behind the 360 degree ...
2
votes
2answers
1k views
AndEngine Game Loop. Where is it?
I have experience programming games with Cocos2d and Box2d. Now I'm playing around with AndEngine and I'm a bit lost. This might sound like a dumb question, but where is the game loop for AndEngine? ...
0
votes
1answer
138 views
AndEngine - Difference between onAccelerometerChanged and onAccelerationChanged
Please forgive me for my ignorance. I'm just starting out using the AndEngine and I've been trying to comprehend the difference between the 2 methods;
onAccelerometerChanged(AccelerometerData ...
0
votes
3answers
3k views
Making hero jump using AndEngine and Box2D
I am new to and engine. currently i want to make my game hero jump using AndEngine and Box2D. I have tried a lot of ways to do so. But could not succeed.
Here is my code for making character walk ...
0
votes
1answer
672 views
LibGDX Box2D physics app crash at launch
I'm using a Win 7 64-bit system. LibGDX gdx-helloworld-android app works fine. It doesn't have any box2D stuff. But when I try to use run a physics demo/test, for example those found at ...
1
vote
3answers
335 views
limit the area to move sprite by toucharea
I want to limit the area to move the sprite object only on this area (for example a area dimensions 200x200).
I would to create a box2D 200x200 where the sprites can moved only on this area
How do ...
1
vote
0answers
220 views
does integration of box2d in andengine requires addtional jars apart from libandenginephysicsbox2dextension.so
Iam using the follwing code, just to draw a sprite and setting boundaries to the screen.And to that sprite iam creating a body and added a fixture definition to the body.And then i have used the ...
1
vote
1answer
97 views
Box2D distanceJoint not maintaining shape in AndEngine
I am using Box2D distanceJoint with AndEngine to maintain a shape. But the shape is not maintained the pieces just fall to the floor. It is supposed to maintain a circular/elliptical shape. Can you ...
1
vote
2answers
775 views
How to remove colliding box2d bodies in AndEngine?
I'm using AndEngine to create a game with box2d extension. I want to implement a condition that when two bodies collide, they should be removed or respawned. Initially I tried using
...
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 ...
1
vote
1answer
70 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 ...
0
votes
1answer
173 views
Body Adjustable Velocity AndEngine/Box2D
I was trying to change the velocity of a Physics Body that is attached to a rectangle with the movement of the accelerometer. I cannot get the body to change velocity, is it a permanent property once ...
0
votes
0answers
194 views
Making body of Animated Sprite in Andengine Box2d
My problem is How can I use Animated sprite in Box2d as each frame of the Animated sprite has different texture and all the frames are packed in one Sheet / one Atlas.. And I have created multiple ...
0
votes
1answer
132 views
AndEngine Box2D. Crash game after remove Joint with collides
Please help! My game crash after remove Joint with collides.
The game is the body that is hanging on the rope. Finger cut the rope, and the game crashes!
My code:
@Override
protected Scene ...
-1
votes
0answers
27 views
Problems with SceneTouch Event on Android Game
I created my game using GLES2 and also lunched it in Google Play. But now I am facing too much problems. I am explaining all the bugs :
1st: Bugs in Scene Touch :
My aim is when someone ...
0
votes
0answers
24 views
Collision between a sprite and a tilemap with Cocos2d and Box2d
I have the following map I made in Tiled, and then added to my project:
map = [[CCTMXTiledMap alloc] initWithTMXFile:@"FirstLevel.tmx"];
[self addChild:map];
I also have the following object which ...
1
vote
1answer
36 views
AndEngine Box2D Body GetContactList
Ive been trying to learn the Physics Box2D Extension for AndEngine and I have been reading http://www.box2d.org/manual.html#_Toc258082975
Under "9.3 Accessing Contacts" it says
You can also ...
0
votes
1answer
530 views
how to point a box2d body in the direction of motion?
Hi guys as the title suggest i want to move a box2d body the direction of motion .. can anyone give some clue how can i achieve this ? Thanks
right now i am using
...
1
vote
0answers
52 views
Corona SDK physics with line, why does the line turn into rectangle in the physics engine?
The issue I am having is simple. I have an object in the center of the screen, and then a circle orbiting that object. what i want to do is have the object orbit around the object, when the use ...
1
vote
1answer
34 views
libgdx - box2d velocity and forces not working
I have a very simple LibGDX game that uses Box2d. Right now, it is just a ship that moves around on a map. I can make the ship move with keyboard controls if I use the body.setTransform() ...
-2
votes
0answers
57 views
A weird result about void* GetUserData() from box2d in cocos2d-x
I have a hero class which inherits two classes called BaseEnity and CCNode.
BaseEnity is just a simple class that contains a tag which I use it to identify objects.
class BaseEnity
{
public:
int ...
0
votes
1answer
21 views
rotaion of a falling body in box2D
i am try to build a tower brick game
(there are falling shapes from the sky and they should make a tower)
but when i drop the shapes the physics doesnt work and if they on top each other on the corner ...
0
votes
0answers
34 views
Box2D debug draw for Android
Is there an implementation of Box2D's DebugDraw for Android? As far as I understand it needs to be written specifically for Android. Other implementations use classes from java.awt, and these won't ...
0
votes
1answer
55 views
Texture Randomly Generated and Sized Rects
I'm making a game (libgdx & box2d) with randomly generated planets having skyscrapers on them - see image below.
The Skyscrapers are random in their position, width and height. I'm now looking ...
0
votes
1answer
31 views
saving contact bodies to be destroyed
In my code I would like to destroy one of two contacted bodies. Within the beginContact the following method in CCPhysicsSprite is called:
-(void)contactMade:(CCPhysicsSprite*)contactedSprite {
int ...
-2
votes
1answer
24 views
Box 2d : What is the difference between a body and shape? [closed]
How a body is different from shape in Box 2d. Can't we create a body of some shape? Why it is required to create shape and body differently ?
0
votes
0answers
21 views
contact listener not recognizing contact between two bodies with circle shapes
I set a contact listener between two dynamic bodies with circle shapes and also set tags for each of their sprites.
The first circle body is jointed to another body by a revolute joint.
When I ...
0
votes
0answers
23 views
Need help - cannot open file Box2DWindowsPhone.lib in cocos2d-x for windows phone
I have a problem when link Box2DWindowsPhone.lib to cocos2d-x for windows phone. i have configed my Project property->linker->input field:
...
1
vote
1answer
46 views
Set Camera Rotation in Libgdx
I can't seem to find a way to tie the rotation of my ortho camera in libgdx (project with box2d) to the rotation of a box2d body.
There is the method of cam.rotate(xy), giving it an impulse or ...
0
votes
1answer
71 views
Not able to call method after typecasting to base class
I have Ball class which is derived from PhysicsObject class. In the following method I am getting a Ball instance from a void pointer and checking if its of type PhysicsObject. When I call the ...
3
votes
1answer
203 views
LibGDX - box2d is out of synch
I'm calling world.step(timeStep, iterations, iterations) in one thread and in Screen.render() which is another thread, this:
MyBox2DDebugRenderer.render(world, cam.combined);
After some time, I'll ...
0
votes
1answer
162 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 ...
-2
votes
1answer
157 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 ...








