0
votes
2answers
31 views

Finding point of touch on a shape

In a Box2D project I need to create a RevoluteJoint between two PolygonShaped bodies at the exact point where the user double tapped. I have the point of touch, and a list of vertices for each of the ...
0
votes
0answers
22 views

Adding a Library to Project (JBox2D)

I want to import JBox2D libraries into a new project. I followed the tutorial in JBox2D website and i made it this far: You can see i have the JBox2D trunk (i didnt quite understood what a trunk ...
0
votes
1answer
20 views

Adding Exterior Physic Engine Library to new Project in Java (JBox2D)

I want to import JBox2D libraries into a new project, im new to using exterior libraries so my doubts will seem really stupid but oh well, thats how you learn. So i kind of followed the tutorial in ...
0
votes
1answer
18 views

Importing JBox2D libraries into a new project

I want to import JBox2D libraries into a new project, im new to using exterior libraries so my doubts will seem really stupid but oh well, thats how you learn. So i kind of followed the tutorial in ...
0
votes
1answer
41 views

Java Physic Engine Clarification [closed]

im new to using physics engines in Java, so i wanted a little boost in knowledge so it becomes easier, ive searched in this forum for the best engine and it appears the most used one might be JBox2D ...
0
votes
1answer
66 views

realistic jumping box2d - configuration of variables

I'm still working on my Jump 'n' Run and have already solved the "can I jump" question. My Question is now, how should I configure the Gravity, the Timesteps, the Fixturesize, the applied Impulse ...
0
votes
0answers
190 views

Processing / box2d - using setTransform() to set position of object not working as expected

I'm making a 2d game using processing and box2d. In my game I have an object targetBox that is an instance of Box. On game start targetBox appears and rests on a see-saw. The goal of the game is to ...
1
vote
2answers
102 views

libgdx/jBox2d adding phantom bodies upon collision?

I'm using libgdx and jBox2D for the first time (though I've used Box2D in other environments before). I created a large dynamic body, and two smaller static bodies for it to land on. My bodies never ...
0
votes
1answer
110 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
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, ...
0
votes
1answer
103 views

JBox2d: Negative gravity results in object going up?

I am a newbie learner to JBox2D. I was just trying JBox2D for the first time on Android(I know Android development and I'm good in it) because my project needed physics. Now, the tutorials and ...
0
votes
1answer
196 views

Prevent body from rotating in Box2D

I am currently using Box2d, more precisely the Java port jBox2d. I have a circle that is colliding with other circles when falling (all those circles form a kind of a crank, see picture below). ...
3
votes
1answer
235 views

Box2D static body collision performance issue

I'm using JBox2d to perform collision detection in a game project I'm working on. I represent obstacles in the world with static bodies. Whenever a dynamic body (i.e. a game character) collides with ...
1
vote
3answers
172 views

How to rotate multiple objects properly in Java?

I have an Arraylist with objects that contains the position and rotation of an object which i want to draw on screen using Graphics2D. public void render(Graphics g1) { Graphics2D g = (Graphics2D) ...
0
votes
2answers
138 views

Using android box 2d in my android project

I am trying to find the .jar file for android box 2d but haven't been successful. So far I've found an apk supposedly with it but don't know how i'd use that. Supposedly you can convert the apk to a ...
2
votes
1answer
139 views

PlayN JBox2D Y velocity increases but collision happens

So i'm seeing a really strange problem. using the PlayN peas demo from the showcase i put together a simple app - i have a dynamic entity dropping onto a static entity and i cannot figure out why it ...
1
vote
0answers
187 views

Purpose of a “ground body” in Box2D?

I'm just starting on making an Asteroids clone game in java for a class. This is my first time working with Box2D, so I'm trying to make sure I understand the basics of the class hierarchy. One ...
0
votes
0answers
132 views

Multiple Revolute Joints on one body

My problem is with connecting two revolute joints with motors enabled to a single circle body. I get unstable, strange behavior from the bodies connected to the revolute joints. The bodies oscillate ...
1
vote
1answer
74 views

How do I detect that all bodies in the world have reached zero velocity?

I am using the java port of box2d. I was wondering, is there a way to detect when all the objects in the box2d world have reached 0 velocity? like a callback or something? thanks!
0
votes
0answers
113 views

How can I compile and run the jbox2d source code in eclipse without errors?

I followed the maven part of this guide: http://code.google.com/p/jbox2d/wiki/QuickStart Basically, I checked out the project using SVN, then imported it into eclipse using the maven plugin (m2e) I am ...
0
votes
1answer
418 views

Can someone give me an example of how a mousejoint works in libgdx?

I have been banging my head against a brick wall for the past few hours. I can't for the life of me get a mousejoint to work in the libgdx framework or java. Could someone provide me with a quick ...
0
votes
0answers
123 views

jbox2d body would not rotate when hitted

i am using jbox2d in my android application. i creat a ball to hit some rects aiming to make them fall and rotate. i can make sure that i hava set all those objects'density to 1 and friction to ...
1
vote
0answers
75 views

How expensive is createBody()

I am currently working on a game written in Java. It is using slick, jbox2d, and I have written it using a component based architecture. The problem: The game is more or less a platformer, but I want ...
1
vote
2answers
231 views

JBox2d - world.getBodyList() goes into an infinite loop

I'm trying to make a class that would draw objects of my JBox2d's world onto a canvas. On update I have a call to render.draw(canvas,world); which passes the world and the canvas to the drawing ...
0
votes
1answer
211 views

Do we have a RopeJoint in JBox2d?

Just a quick question, seems that RopeJoint is missing from jbox2d... is it really so or did they rename it to something? Distance joint works fine, but I want to it be flexible, like a rope, not a ...
2
votes
2answers
202 views

setLinearVelocity() not working as expected

I've been messing around with jbox2d and was suprised when the x-velocity of a body was affected by the gravity of the world. Here's my code: //create world Vec2 gravity = new Vec2(0, 1); ...
0
votes
1answer
347 views

JBox2D Hangs On world.step()

A serious bug has popped up and I don't have a clue why. Not long after I start my game, the game freezes. All I know is that the program execution goes into world.step(1.0f/30.0f, 5, 2); and never ...
1
vote
0answers
113 views

Need Box2D benchmarks

I've ported jbox2d to c# and I want to check if my results are identical. Does anybody know if there are some benchmarks which I can use as ideal results or running tests. When I say benchmark I ...
0
votes
1answer
285 views

Where can i find fixture presets of different materials

Where can i find fixture presets, that can be used is rigid body physics engines like Box2D to simulate behaviour of different materials? I'm looking for values of density, friction and restitution ...
2
votes
2answers
626 views

Box2D - Falling body not accelerating under gravity

I have created a basic example of a falling ball but I am slightly confused to why the object is not accelerating while falling. It is travelling at constant speed which isn't what I would expect. ...
1
vote
0answers
270 views

How to draw jbox-2d in slick2d

I am trying to implement the Box2D "Hello, world" (falling box program in the manual), but can't figure out how to draw the shapes in the right spot. I believe the draw- or fillRect functions of ...
1
vote
1answer
269 views

Box2D blocks wobbling/jittering/vibrating

I have a stack of blocks in my Box2D simulation (in Processing, using the Fisica wrapper for jbox2d), but they shake uncontrollable while they're moving. It's not that there unstable, it just looks ...
1
vote
1answer
596 views

How to make box2d mouse joint works similar to box2d setposition

I want to make b2mouse joint working similar to b2setposition, though i know in mouse joint force is applied, so it's not possible to reach the desired point without any delay like setPosition(), but ...
2
votes
1answer
287 views

Ball in JBox2d bounces forever

Im trying out JBox2d. I´ve been through a couple of tutorials, and got it up and running. Created four walls and a ball that should bounch. At the start the ball would bounce too little, just making ...
1
vote
1answer
697 views

making dynamic bodies fall JBox2D

I'm having some problems with JBox2D. I've created a ball and world and everything as far as I can tell correctly, but when I call the world.step() method it dosen't make the ball fall from gravity. ...
0
votes
1answer
423 views

jbox2d on Android - circle not applied gravity and other staff

I am doing simple application that should put circle on Canvas when the user taps the screen and then put that circle in the PhysicalWorld I have defined. I draw the circle in "onDraw" method, but ...
1
vote
1answer
110 views

Best method for changing collision polygons in Box2d?

I'm wondering what I should do for my player character. Currently he has the idle stance, with all the collision polygons created etc. But I want him to move his arm polygon when he is punching. How ...
1
vote
1answer
348 views

Box2D : Check collision with the Joint?

As shown in the image I have implemented "blob" by connecting Circle shapes with "Distance Joints". (refering JBox2D ContantVolume joint). Is it possible to check whether other objects (in above ...
1
vote
0answers
416 views

JBox2D collision filtering (categoryBits, maskBits)

I've read the Box2D manual and I understand how masking works in general. But the results I'm getting are not following what is laid out in the manual. I have 3 categories of things: players, ...
1
vote
1answer
183 views

Which direction is zero (0) in Box2D?

Which direction is considered 0 degrees in box2D? Is it north, south, east, west? And then do the angles increase clockwise, or counter-clockwise? I've read through the manual and it doesn't seem to ...
3
votes
3answers
9k views

jbox2d tutorial [closed]

can you tell me: where can I find tutorials "programming games in jbox2d"?
0
votes
1answer
481 views

jBox2D Circle ends up moving horizontally or vertically

I tried to implement a circle bouncing between 4 wall. But, it dosen't matter what is initial velocity vector of that circle, afters some time it always ends up moving horizontally or vertically. Is ...
1
vote
3answers
163 views

Differentiating between ball and player in goal collision

Hey, I'm trying to make a basic hockey style game. I have the basic physics working with the pitch, a player, an opponent, and a ball. I'm struggling to figure out how I can allow the ball to travel ...
4
votes
1answer
2k views

How can I prevent a ball from sticking to walls in Box2D?

I'm experimenting with box2d. I seem to have a problem people describe as sticky walls I have a ball and a paddle I'm using all the basic recommended scales i could find, 10m world, 1m ball The is ...
0
votes
1answer
1k views

JBox2d Reference Manual?

Where do i find reference manual of JBox2D ? I was using fisica which inherits JBox2D. There is reference manual of fisica but can't find reference manual of JBox2D
1
vote
2answers
3k views

What is the most performant 2D graphics engine for use with Android?

I have managed to make a hello world JBox2D application, and it works (I have some bouncing balls). However, I just read a comment on a forum post, which claims that JBox2D produces a lot of garbage, ...