0
votes
0answers
22 views

Move 3d body using keyboard

I want control model using arrays. I have code for now: For rotation: rotation=0.0f; if(Gdx.input.isKeyPressed(Keys.A)) { rotation += 80; }else ...
1
vote
1answer
38 views

Get distance of sprite and Screen

How to get the distance between the edge of the screen and a vector moving sprite? I want to get the distance between my moving sprite and the edge of the screen so that when my sprite touches the ...
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
1answer
37 views

Thrust movement on single axis, very strange behaviour

I've noticed some very strange behaviour with a simple piece of code, I've stripped it down to remove any variables, time-step, acceleration, etc. I have a shape on the screen, pressing the left side ...
0
votes
2answers
210 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
votes
1answer
202 views

Collision detection between two BoundingBoxes in libgdx [closed]

In my libgdx game I have 3D BoundingBoxes for map and player objects. I want to find out whether they collide in 3D space. How can I do this?
1
vote
1answer
130 views

Collision detection between a BoundingBox and a Sphere in libgdx

In my libgdx game I have 3D BoundingBoxes and Spheres for map and player objects. I want to calculate whether they collide with each other in order to properly simulate the motion of these objects. ...
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
361 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
1answer
537 views

LibGDX Sounds Issue

I am developing a game for Android and the Desktop with LibGDX. I am having a problem with playing sounds. The game is a labyrinth style game, there are balls that roll around on the device using ...
0
votes
0answers
242 views

How to move an object to the touch point when game is made in X-Z axis?

I am new to game development and in my game I need to move a laser gun shot to my touch position. The problem is that the enemies move in the X-Z axis rather than the X-Y axis. But touching a point ...
7
votes
3answers
7k views

Android, libgdx and box2d basics [closed]

I wrote couple of simple board games since i started on android learning, Please let me know is there any tutorial or links, where i can start with physics library with libgdx, looking for something ...
0
votes
1answer
434 views

Box2D - how to prevent continuous jumping while next to a wall

Greetings stackoverflow community! I am working on an Android game that uses Box2D for collision detection and physics. Right now, I'm implementing a basic platformer system. Jumping is in place, ...
1
vote
1answer
252 views

box2d PolygonShape inside PolygonShape

I created full screen "borders" which contains boxes (boxes should move inside this borderBox). Boxes are dynamic and borderBox is a static body. BorderBox is PolygonShape and boxes are PolygonShape ...
1
vote
1answer
431 views

How do I set false/NoCollision in the collision event in Box2D with libgdx?

I am developing a 2D, underwater, action-RPG for Android, using Box2D as the physics engine, mainly for collision detection, collision response and movement of in-game characters within an environment ...
3
votes
2answers
2k views

creating a smooth rope with an android physics engine

I want to practice programming with (popular) android physics engines (AndEngine and libgdx). It is not very difficult to create a small world with physics objects but now I want to create a rope and ...