The libgdx project is a cross-platform (Windows, Mac OS X, Linux, Android, HTML5, and iOS) game development library written in Java with some JNI code. It abstracts away the differences between writing OpenGL-based games on various platforms.
21
votes
5answers
8k views
Dealing with different aspect ratios in libgdx
I have implemented some screens using libgdx that would obviously use the Screen class provided by the libgdx framework. However, the implementation for these screens works only with pre-defined ...
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 ...
6
votes
1answer
1k views
Producing eraser effects using libgdx and OpenGL ES
Please consider the following images for the illustration:
Initially I fill the whole screen/stage with individual Images until the screen turns pink. Each blob of pink colour is an individual Image ...
10
votes
2answers
6k views
libgdx SpriteBatch render to texture
Is it possible to render to texture using SpriteBatch in libGdx (Java engine for Android/Desktop)? If so, how do it?
Basically I want to render everything to 320 x 240 region of 512 x 256 texture and ...
11
votes
2answers
11k views
UI API for libgdx
Android and libgdx noob here.
Does anyone know anything about the recent UI API that was released for libgdx?
See blog post here: http://www.badlogicgames.com/wordpress/?p=2058
I am looking to ...
2
votes
1answer
4k views
Loading Obj files in Libgdx not woking on android
The following code shows a torus slowly revolving and coming into display:
package com.objloader.example;
import ...
public class ObjLoaderProg implements ApplicationListener{
String torus;
...
8
votes
7answers
6k views
Cocos2D OR libgdx for Android Game Developement [closed]
I just want to know, that in the long run, using which of these engines will be better. Although I feel that using Cocos2D will be a better option, as it can also be used for iphone developement, ...
3
votes
2answers
173 views
Java Timer in GWT
I'm trying to have a Java Timer in my EntryPoint:
Timer timer = new Timer();
timer.schedule(
new TimerTask() {
public void run() {
//some code
}
}
, 5000);
But ...
3
votes
1answer
779 views
Changes in code aren't reflected when I run Libgdx project on Android
I've been following the Libgdx tutorial here and I'm running into a strange problem. Due to the constraints of my work environment, I can't download OpenGL drivers on my desktop, so I can't test my ...
8
votes
2answers
8k views
Actions of Actors in libgdx
I have made my Actor, but I am unclear on how to take advantage of the action and act methods. Outside of the basic Javadoc, I have not found a good tutorials on these methods.
Can anyone provide an ...
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);
...
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 ...
1
vote
2answers
1k views
libgdx game not working in android phones
i am trying to build android game from this libgdx based games
but the android app crashes when ported to android game the libgdx code i downloaded from ...
0
votes
0answers
390 views
Libgdx resize window on android to fill screen
I am trying to fill the resize function that comes with Libgdx to fit all of the android screens.
The best solution I have seen so far is this tutorial: ...
5
votes
4answers
2k views
How do I force eclipse to update the apk on my hardware device with each build?
If I change some code, save, and Run, it runs the last version of the program, not what I just saved. The only way I can make it update is if I Clean the project, Build the project, and then Run the ...
3
votes
1answer
2k views
java.lang.RuntimeException: eglSwapBuffers failed: EGL_SUCCESS report
I have android game, using libgdx framework
on Google Play store there are report:
java.lang.RuntimeException: eglSwapBuffers failed: EGL_SUCCESS
at ...
1
vote
2answers
552 views
LibGDX: Android SpriteBatch not drawing
I'm having a hard time getting a spriteBatch to render in LibGDX. It shows when I run it for the desktop, but not on Android. I sprite I'm trying to render is the star background.
Desktop:
...
1
vote
0answers
190 views
Android build in Eclipse not picking up changes to linked Project [duplicate]
Possible Duplicate:
Changes in code aren't reflected when I run Libgdx project on Android
I've been developing an Android application in Eclipse for several months. Recently, I've been ...
0
votes
0answers
82 views
libGDX: Hanging rope knotted with some pivot
I am trying to make a hanging rope having some object at it lower end in libGDX,
Rope should be like hanging rope in Box2D
I have done a lot of research, libGDX has its ropeJoint method but how to ...
0
votes
1answer
169 views
Keeping track of unnamed objects
I want to make a top-down 2d shooting game using libgdx. There will be a lot of bullet objects that I want to keep track of and dispose when they go off the screen. I was thinking that I would use ...
0
votes
1answer
980 views
how do I create skin file to use in libgdx
I've been looking for the skinpacker from the libgdx SVN without success.
and then I learn it's no longer exist. SO, the question is how do I create a skin.json file to use in my libgdx project. Do ...
0
votes
2answers
149 views
Why does my array keep rendering the same number for each variable?
I have a for loop that is looping through an array of rectangles as they appear. For each new rectangle that is added to the array a sprite is drawn on top of it. I want each sprite drawn on top of ...
8
votes
2answers
5k views
In libgdx, how do I get input from the back button?
For my game, I'd like the Android back button to take you to the pause menu, instead of minimizing the game. From what I've googled, I know I need to call
Gdx.input.setCatchBackKey(true);
But how ...
3
votes
2answers
4k views
Particle System libGDX [closed]
Can anyone give me a good example of where to start with making a particle system in libGDX? I have looked at the test example in the libGDX source but I am still having trouble getting my head around ...
10
votes
2answers
5k views
TrueType Fonts in libGDX
Does anyone know how I can use a TTF font in libGDX? I have looked around and have seen things about StbTrueTypeFont but it doesn't seem to be in the latest release.
EDIT: I found the StbTrueType ...
6
votes
1answer
2k views
Using SQLite from libGDX on Android
Does anyone have any tips on storing data from libGDX on Android in SQLite. I am very familiar with the techniques used in the Android SDK but I don't have any idea how to call those Android database ...
5
votes
3answers
9k views
How to move a sprite with the keyboard keys using libGDX?
i have just started using java and libgdx and have this code, very simply it prints a sprite onto the screen. This works perfectly, and i learnt a lot from it.
package com.MarioGame;
import ...
14
votes
2answers
8k views
Andengine vs libgdx
Has any one got recommendations (technical, functional, or otherwise) for one of these game engines over the other?
I've worked through a couple of tutorials for each of them, and they both seem ...
5
votes
1answer
2k views
AssetManager in LibGDX
I am trying to use the AssetManager class in LibGDX and I understand how it works but I am trying to implement a loading screen. I have followed the AssetManagerTest.java file here,
but I am having a ...
2
votes
2answers
1k views
Loading texture in libgdx android using file in res?
In LibGdx, texture image is stored in asset folder and loaded using following code.
Texture texture = new Texture(Gdx.files.internal("image/someImage.jpg"));
I have different texture for different ...
4
votes
4answers
90 views
Rotation of Orthographic Camera
I am able to rotate camera with this code
camera.zoom = 3//in constructor
if(camera.zoom>1)
{
camera.zoom-=0.01f;
camera.rotate(15);
}
this is done in render, Now zooming effect ...
4
votes
3answers
648 views
LibGdx How to Scroll using OrthographicCamera?
I have been loocking for 10 hours (literally) and I'm done, I need to ask. Thing is I'm learning How use LibGdx to program Java games. I'm doing a Horizontal Space Ship Game. So, my worst problem ...
3
votes
2answers
3k views
Button ClickLIstener is not Working in LibGdx game?
I am developing android game using libgdx in that game,there are 4 button in menu screen, but click listener of these button is not working any one suggest me?
// retrieve the custom skin for our 2D ...
3
votes
1answer
1k views
Native libraries not running on the device
I've put armeabi,armeabi-v7a folders into libs folder and not in maven repository. But I am getting following error while using libgdx:
The library 'gdx-backend-jogl-natives.jar' contains native ...
2
votes
1answer
2k views
Texture from texturepacker in LibGDX
Trying get my head around the texturewrapper in (the awesome) LibGDX framework I need help.
I would like to bind a texture (accordint to http://code.google.com/p/libgdx/wiki/MeshColorTexture) that ...
1
vote
2answers
404 views
Drawing filled polygon with libgdx
i wanted to draw some (filled) polygons with libgdx for an android game. it shoudn't be filled with a graphic/texture. i have only the vertices of the polygon (closed path) and tried to visualize with ...
1
vote
5answers
3k views
Rotate Image Clockwise using LibGDX
How can we rotate a Image Clockwise using LibGDX? what i am looking is when a image is loaded,suppose a star, i need to rotate it from beginning of screen to end of the screen horizontally, with star ...
1
vote
1answer
419 views
Setting boundaries to world in libgdx
Hi I am developing a game using libgdx framework, in that i am unable to set boundaries to the world in order to limit the actors. When ever a fixture crossed the screen(world) edge it should revert ...
0
votes
1answer
71 views
LibGDX blinking.
I've used the LibGDX UI Setup to start a project.
The only thing I have in the implements ApplicationListener is:
public void create() {
setScreen(new LoadingScreen(this));
}
This ...
0
votes
1answer
729 views
libgdx obj loader problen
I am trying to make my first 3d game using Libgdx. However when I load my .obj file it does not look as I expect
On phone
and in Blender
I am loading with the following
@Override
public void ...
0
votes
1answer
631 views
How to manage camera for move to game character smoothly?
I am making game for android using libgdx my requirement is that when character play game normaly then we work as
if velocity == normal(==25)
cam.position.y = ...
5
votes
2answers
1k views
Mesh rendering issue libgdx
I have a very simple program, that loads an wavefront obj file, rotate and displays it.
The problem is that the program renders it with some issues (like missing triangles). I had a similar problem ...
4
votes
2answers
4k views
How to make an executable out of my LIBGDX game
I've never made a program into an executable before, and I've been looking into how to do this for some time now. When I try to put it into a jar everything works fine but when I try to run it nothing ...
3
votes
6answers
204 views
Getting java.net.MalformedURLException in MonoDeveloper
Hey I am new to MonoDeveloper. I am trying to port libgdx code to iOS platform. My Libgdx code runs perfectly on desktop & Android phone.
But when i run it on iPhone simulator with ...
3
votes
1answer
668 views
how to get stage in the center in libgdx?
My image is of size 720x480 and stage is of same size. The boolean parameter, whether to stretch the stage or not is kept false, so that aspect ratio is maintained, now the problem i am getting that a ...
2
votes
2answers
1k views
Can't load libgdx desktop app on mac osx
I have been developing a simple game using libgdx on my Windows 7 PC. Recently I bought a macbook pro (mountain lion). I downloaded and installed JRE 7 and eclipse, then cloned and imported the ...
2
votes
3answers
1k views
How to draw a BitmapFont in LibGDX?
I'm seriously betting that I did something effing stupid and just can't seem to notice it.
package com.me.mygdxgame;
import com.badlogic.gdx.ApplicationListener;
import com.badlogic.gdx.Gdx;
import ...
2
votes
1answer
339 views
LibGdx GLES2.0 cube texel stretching
I've been programming OpenGL on Windows/SDL for a few years and am able to do quite a lot of advanced things with it.
I've switched over to Android and libgdx and over the past few days have tried to ...
1
vote
1answer
169 views
LibGDX Stencil Buffers while using SpriteBatch
This is a continuation of my previous problem and post, seen here. Thanks to the answer I received there I feel I was able to get a little closer to my goal, as well as further my learning of OpenGL, ...
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. ...


