Tagged Questions
1
vote
1answer
42 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
68 views
LibGDX - Rotate SpriteBatch on itself
I would like to rotate this SpriteBatch on itself upon clicking on a button
@Override
public void render() {
SpriteBatch batch = new SpriteBatch();
batch.begin();
...
0
votes
0answers
67 views
Java - LibGDX - Ease Rotation with Speed?
I have a rail. On this rail moves a cart. When the cart moves with default speed on this rail, the movement looks good. But when I increase the speed of the cart the movement looks not good. First the ...
0
votes
1answer
227 views
LibGDX - Rectangle collision detection in 2d?
OK, I want to try this:
Make two cars (with sprites: e.g. red rectangle for car 1 texture, green rectangle for car 2 texture). With width: 32px and height: 20px.
(Movement of the cars are not the ...
0
votes
0answers
138 views
How to get vertices of rotated Mesh in Libgdx without render?
First I would like to know if it's possible to rotate a Mesh without drawing it.
If it is possible then how could I get the new vertices of the rotated mesh?
I need this to verify if a certain Mesh ...
2
votes
1answer
407 views
LibGDX Moving a Rotated Camera
I've come to a situation in my application, built using LibGDX, where I need the camera to be able to rotate, and also be moveable by the user, as well as being able to be zoomed. My camera controls ...
1
vote
0answers
289 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
2answers
185 views
How to calculate rotation of Android phone relative to phone
How do you calculate the amount the phone has rotated?, where the "zero degrees" is something you specify.
For example, say you have your phone flat infront of you on a table in a portrait position - ...
3
votes
1answer
166 views
Rotating an Object towards a touch Point
I have an object with an x,y,width,height, centre of rotation for X and Y (originX, originY) and have successfully calculated the angle between this centre point and the touch point using
touchAngle ...
1
vote
1answer
617 views
Rotating objects in a game LibGDX
I am developing a game for Android using LibGDX. I have to objects in the game that need to be rotated. The objects are a board, and a tube. The problem that I am having is this, the tube piece ...
0
votes
1answer
270 views
android libgdx and rotate actions in sequence
I want to spin a wheel for some angle. and then spin it by some small angles.
The rotation should have a slow down inertion.
For this I create some rotate actions with differing times to rotate the ...
1
vote
1answer
1k views
App using libgdx restarts whenever device rotates
I made an app using accelerometer but problem is whenever it detects rotation of the screen, it goes to main menu.
I used following code to disable rotation but it still detects the rotation action ...
1
vote
3answers
1k views
Draw a BitmapFont rotated in libgdx
I can't seem to figure out how to rotate a Bitmap font correctly. I think you modify the transformation matrix of the SpriteBatch. However, trying to rotate that rotates the text around some point, ...