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
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 ...
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() ...
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 ...
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 ...
2
votes
2answers
40 views

not proper collision in box2d

I am developing a game in which the user have to hit a high speed ball. To hit the ball I have joined a rectangular body with the actor using revolute joint and enabled its motor, to rotate it with a ...
-1
votes
1answer
29 views

Lighting in Box2D and Box2DLighting not working when used with a texture

I'm having a problem with Textures and using lighting in a small prototype i'm working on. I understand how to implement the lighting using RayHandlers and whatnot, but when I then place a texture on ...
0
votes
0answers
73 views

libgdx box2d interpolation doesn't work well

I am developing an Android game with libgdx and box2d. My Problem is that the interpolation of the body in box2d doesn't work well... The body is laging a bit. The body is "less laging" without the ...
0
votes
0answers
128 views

box2D - Weld Joint example for libgdx

I am new working with Box2D, and im looking for a good weld joint example in Libgdx. I would appreciate the example (to learn modify world objects) have: Create a weld joint. Modify the weld ...
0
votes
1answer
55 views

How to stop one body when collide with another body [Box2d]

I am developing a game using LibGDX platform and box2D in which I am moving one body(Dynamic) with the help of tocuhPad motion of LibGDX using testBody1.setTransform(new Vector2(x,y), 0); method ...
4
votes
0answers
90 views

EndContact of ContactListner(Box2d) not called everytime in LibGDX

I am new in box2d and trying to implement it in a LibGDX Game. What I want to do is to detect the collision between the various bodies. So,I made a class collisionDetection and implement ...
2
votes
1answer
207 views

Collision detection in kinematic bodies LIBGDX

I managed to use box2d in libgdx. However the example code given here is for dynamic body only. I tried to use it and it works great but when i change the Dynamic to KinematicBody the code does not ...
0
votes
1answer
134 views

LibGDX PhysicsBox2D, if i set linear velocity, physics does not work correctly

my world is world = new World(new Vector2(0, 0), true); //there is no gravity and i have walls in the left, right, top bottom of the screen, so elements do not fly off the display. I have the ...
0
votes
0answers
118 views

Turn tmx layer into collision object in libgdx

I have a tmx file with land and sky tile layer. I've a collision(object) layer around the land layer. In libgdx, how do I turn the entire land layer into collision objects for box2D dynamic objects to ...
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
2answers
213 views

how to use the libgdx contactlistener

I've just began to work with the Libgdx's Box2d Engine but i simply do not understand when the methods of the Contactlistener should be called. There is on the one hand "begin contact" and on the ...
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 ...
2
votes
1answer
405 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
1answer
100 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 ...
1
vote
1answer
142 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
1answer
94 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
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
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
99 views

Is there an upper limit on velocity when using box2d?

I'm using box2d for physics simulation. I'm moving a circle using arrow keys by applying impulse on the body when ever a key is pressed. Unfortunately, the circle moves excruciatingly slow and doesn't ...
0
votes
0answers
227 views

box2d libgdx destroy body [closed]

I am using Box2d & libgdx and I am having trouble remove bodies after a contact event. I watched the logcat and everything works Ok except the world.destroyBody(b) line. When I include this line ...
0
votes
3answers
872 views

Libgdx Box2D setting up an image to a body

i have a problem with setting up an image to a dynamic/static body. i found a flash code about it public void setImage() { sprite = new B2Sprite(); var bitmap:Bitmap = new Image(); ...
0
votes
0answers
363 views

Generating Box2D body(collision map) from tilemap efficiently

I am working on a platformer game that will use tile maps, which I don't know if is a good idea! I've made a neat tile map editor with tools for setting a spawn point etc. but now that I want to be ...
1
vote
0answers
302 views

Rotating a vector in libgdx box2d, firing a cannon ball from a cannon

I have a cannon that fires a cannonball and smoke particle effect, i want the cannon ball to start at the end of the cannon, this i can do by adding the width of the cannon to its x position and ...
0
votes
1answer
182 views

how to get touch event on a body in Box2d(Java)

I have various bodies rotated at some angle with the help of Box2d in libGDX. What I want is to destroy the body when I click on it, but the problem is that I am not able to get the area definition of ...
0
votes
1answer
135 views

How to implement box2d light when using scene2d in libgdx

We are making a game using libgdx and we want to know the way to use the light and physics from box2D with the scene2d, It seems that to get light you need be into a World class which contains the ...
0
votes
1answer
758 views

Box2d libgdx, a bit confused about the pixels to meters stuff

So i understand the concept. The idea is that box2d more or less works in meters, so you need to do a conversion from pixels to it. Makes sense. I was following the tutorial/intro to box2d here. It ...
0
votes
0answers
68 views

Getting an error after running the game sometime with LibGDX/Box2D

I'm relatively new to LibGDX. When I'm running my game on desktop, after sometime, occasionally it gives the following error. Exception in thread "LWJGL Application" ...
0
votes
1answer
117 views

Box2D (LibGdx) getWorldPoint is wrong after collission

I've just started with Box2D and have come across a strange problem. I have a simple function to constrain object position to within a predefined area. I do this by getting the body's world ...
-1
votes
1answer
132 views

Create and draw tongue in libgdx [closed]

I want to create chameleon tongue. Like tongue in this game - https://play.google.com/store/apps/details?id=prueba.prueba&feature=search_result#?t=W251bGwsMSwxLDEsInBydWViYS5wcnVlYmEiXQ.. I ...
1
vote
1answer
395 views

How to draw custom polygon in libgdx?

How to draw custom polygon from vertices in libgdx? I want to draw any box2d bodies.
1
vote
0answers
233 views

Box2d spinning wheel with RevoluteJoint

My goal is to make a wheel that slowly spins which should point where the gravity is. I'm developing this using libgdx for Android, when the device is rotated (I'm using the accelerometer) the wheel ...
2
votes
0answers
178 views

libgdx box2d drawarc

I'm new to Libgdx and box2d. I needed to draw arc. I searched for a function finally I came up like below public void drawarc (float centerx, float centery,float radius, float anglefrom, float ...
1
vote
0answers
87 views

libgdx desktop project and android project [closed]

I am working on a 2d game in which, when rendering an element, I got in desktop app : "rendering player at location 300.0, 100.0 with width:96.0 and height:141.12" AND for the same element in Logcat ...
1
vote
1answer
633 views

Box2d libgdx very slow on device

its supposed that, a time step is necesary to run a game at the correct speed, a fast hardware will adjust the speed to 30 or 60 fps, otherwise, the game will run so fast as the hardware can handle ...
0
votes
0answers
846 views

libGdx Box2D Collisions

I have been developing a game for libGdx and ran into this bad situation: I have several balls in box2d. They are all either "bad" balls or "good" balls. If a "good" ball collides with a "bad" ball ...
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 ...
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
1answer
144 views

Pulling limbs in box2d

I am using Box2d (libgdx) to implement a BMX bike with its rider. The bike is one body and each limb of the rider is one body. When airborne during a jump, the player should be able to control not the ...
1
vote
1answer
342 views

LibGDX Box2d associate body with object

I'm a beginner Java/LibGDX developer so I'm sorry if I got something terribly wrong here but here's my question: How could a Box2d body have some object associated with it? For example a Box2d ...
0
votes
0answers
593 views

libgdx box2d background image

I need to apply some textures to my libgdx game. Among them is background image of airhockey table. It is 800x480px. I load it like this: backgroundTexture = new ...
0
votes
1answer
513 views

How to enforce a maximum speed for a specific body in libgdx/box2d?

I'm using Box2D through Libgdx to create a scene. I have a scenario where I would like to constantly propel a specific object using applyForce (the direction would change from time to time), but only ...
1
vote
0answers
590 views

box2d: positioning of an box2d body with a specific angle without using setTransform()?

I am using box2d which is included in the libgdx api (java) I am using a rectangular box2d body as a sensor for detecting swordslash-collisions (using the body as an sensor) in 4 directions (slashing ...
0
votes
0answers
562 views

LibGDX android drag body by finger without mouse joint

I'm trying to do a very simple game, air hockey. Since I'm not very familiar with any game engines and don't want to use any c++ for now, I'm using LibGDX and subsequently Box2d. I found MouseJoint ...
0
votes
0answers
339 views

Movement of a dynamic body up a slope using box2d

I am new to android development and as my first attempt at getting a working android app I'm trying to make a 2D side scrolling game (somewhat similar to Mario), using libGDX and box2d. I found this ...

1 2