Tagged Questions
0
votes
2answers
34 views
LIBGDX making 5 different buttons on one screen
I have 5 buttons i need to make do different things but they don't and i need to know how to make them do it.
Here is my code;
public class MainMenu implements Screen {
CrazyZombies game;
Stage ...
1
vote
1answer
41 views
LibGDX - Does modifying a Group affects children?
I wonder if there is a way to affect Actors children when their parent Group is modified ? Like they were attached to him. By modifying I mean doing some conventional actions like translation, ...
1
vote
2answers
478 views
libGDX Coordinate System
I'm trying to properly configure my Camera and Sprites in libGDX to show up in a 2D coordinate system properly with the origin at the bottom left hand corner.
I set up my Camera like this:
...
0
votes
0answers
61 views
Should I set new TextureRegion for Sprite every frame?
The Animation guide of Libgdx is now in Deprecated part, and I found no replacement.Therefore, I intend to write a convenient AnimatedSprite class that extends Sprite. My idea is in every update (game ...
0
votes
1answer
71 views
After loading textures application gets short and not controlled freeze
Use libGDX platform. After loading textures my application gets short and not controlled freeze.
@Override
public void render() {
float deltaTime = Gdx.graphics.getDeltaTime();
if ...
1
vote
2answers
935 views
How to make a smooth camera follow algorithm? [LibGDX]
I am making a game with LibGDX (Java)
I need camera to follow fast moving character. The easiest way to do it is to just write this:
this.getCamera().position.set(Obj.x, Obj.y, 0);
But, is there ...
0
votes
1answer
151 views
2D Game - Calculation when rendering or in another Thread?
I'm using LibGDX at the moment for an Android project but I think the answer to this question can be usefull whatever framework/library or language you use.
All the tutorials I've found on internet ...
6
votes
1answer
2k views
LibGDX - Application crashes when call TiledMapRenderer.render()
@Override
public void render(float delta) {
Gdx.gl.glClear(GL10.GL_COLOR_BUFFER_BIT);
camera.update();
sprite.setProjectionMatrix(camera.combined);
...
3
votes
1answer
641 views
LibGDX - Camera.update() call does nothing
I just began playing with LibGDX, and am already facing a problem with the camera.
I saw some tutos on Internet which told, if I understood well, that in a 2D game using LibGDX you have to ...
1
vote
0answers
257 views
Questions About Hashmaps and 2D Grids
I'm working with a very large grid-based world that has around 50-90% of its grid spaces empty at any given time, therefore I chose to use a HashMap over an array.
The problem is that basic ...
8
votes
1answer
696 views
OpenGL 2D polygonal shape drawing and manipulation?
I'm working on a 2D game project where I am expecting users to draw 2D polygons (closed path) such as:
Possible Solutions:
1 - Draw by Points and Calculate Border Lines.
1 Problem - Calculation of ...
1
vote
1answer
463 views
OpenGL ES maximum textures not working properly?
I am learning to develop games with Android using libgdx, a framework for programming in Android using OpenGL ES and on desktop with Java using LWJGL. The device I am testing on (HTC Hero) quotes a ...
9
votes
3answers
6k views
Changing the Coordinate System in LibGDX (Java)
LibGDX has a coordinate system where (0,0) is at the bottom-left. (like this image: http://i.stack.imgur.com/jVrJ0.png)
This has me beating my head against a wall, mainly because I'm porting a game ...
4
votes
3answers
7k views
Scrolling parallax background, infinitely repeated in libgdx
I'm making a 2D sidescrolling space shooter-type game, where I need a background that can be scrolled infintely (it is tiled or wrapped repeatedly). I'd also like to implement parallax scrolling, so ...