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.
0
votes
1answer
106 views
libgdx TextureAtlas, and NinePatch's
I am making a simple game using libgdx. I have a TextureAtlas that has I ninepatch I am trying to use:
The image is saved as menu.9.png
I am using the following code:
Image bg = new ...
1
vote
2answers
53 views
LibGDX - How to maintain a background process
The game I want to deveop should have a small constantly running background process, that can, for example send notifications, even if the main game window is closed. Is this possible in LibGDX?
...
0
votes
0answers
110 views
Creating an Input Method in Android using libGDX?
I'm part of a group in college working on our senior design project. Our project involves using EEG and flashing patterns to control an Android device without touching it, merely by looking at ...
0
votes
0answers
121 views
Libgdx tiled map mirrored
I'm developing a small GameEngine with LibGDX Artemis including a ScriptingEngine.
I'm using Tiled to generate and display a map. But since I'm drawing boxes from an objectLayer the drawings were ...
0
votes
1answer
171 views
Touch Event not working properly..libgdx
I want to execute a function only when the actor on my stage is touched..
But the problem is the function gets executed irrespective of where its touched on the stage..
Even if its touched in some ...
1
vote
1answer
222 views
Cannot load progressive jpeg images in libgdx
Here's my source
package com.effect.bio;
import com.badlogic.gdx.ApplicationListener;
import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.Input;
import com.badlogic.gdx.graphics.GL10;
import ...
1
vote
2answers
40 views
Eclipse error for extended class
I'm trying to create and extended class from the one bellow but I'm getting an error message from eclipse saying "Syntax error on token "{", { expected after this token"
import ...
0
votes
1answer
176 views
Simple OpenGL shader gives an error in LibGDX (no uniform with name diffuseTexture)
I don't understand why when building I get an error when setting this simple shader to an imported mesh (.obj mesh), the error I get is:
"no uniform with name 'diffuseTexture' in shader"
The thing ...
0
votes
0answers
131 views
OpenGL is not supported by the video driver
When I use this code:
import com.badlogic.gdx.backends.lwjgl.LwjglApplication;
import com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration;
public class Main {
public static void ...
0
votes
1answer
215 views
LibGDX read XML file
I have this XML file :
<pack name="Cappellino" num_monete_livello="1100">
<level number="1" status="nolocked" />
<level number="2" status="locked" />
<level number="3" ...
0
votes
0answers
53 views
Loading .mtl file as in libgdx
I am trying to load .obj file and its respective .mtl(material or texture) file in libgdx. Is there any way of doing it. And i am using kibgdx 0.9.7 version.I am looking for any examples or any ...
0
votes
1answer
55 views
ObjLoader.loadObj not takinng inputstream as argument
I am using libgdx 0.9.8 and trying to load .obj files as Mesh.But as specified in various tutorials and in the documentation its not taking Stream as paramtetr rather its asking for FileHandle. What ...
0
votes
1answer
94 views
Error while running libgdx example
I am new to libgdx.Just tried running the libgdx example i get strange error it says:
[2013-03-22 12:08:35 - ObjLoaderUsingLibGdx] Dx 1 error; aborting
[2013-03-22 12:08:35 - ObjLoaderUsingLibGdx] ...
0
votes
2answers
105 views
libgdx my splashscreen is not showing
I'm writing an libgdx game, but it seems that i cannot show my splashscreen, it only shows a black screen. does anyone know how this comes?
I don't get any runtime error, it only shows a blackscreen, ...
1
vote
2answers
186 views
LibGDX Tablelayout Menu does not show
I'm writing a new program in LibGDX handling Backgroundtextures and have just begun to implement the screens. But when I test it, it just shows me a black cleared screen with the given resolution.
I ...
0
votes
1answer
179 views
Android and LibGDX : create XML file in local storage
I want to check if in my /assets/game/ directory there is a file level.xml and if it does not exist I want to create it. I use this code:
private static void LoadXML() {
ProgressFileHandle = ...
0
votes
2answers
176 views
TexturePacking with Libgdx -
My program packs a series of images and outputs them into an aste.png, and an aste.atlas. My code for packing is as follows:
public void pack(){
System.out.println("Packing should not be ...
0
votes
0answers
125 views
Scripting Language inside of Java [closed]
I'm planning to develop a point and click game in Java LibGDX and want to implement a scripting language for Logic. I would primarily want to execute Java functions using the scripting and set values.
...
0
votes
0answers
125 views
Android LibGDX - Slow floorcasting application: How to optimize?
I am working on a small game with LibGDX which uses the floorcasting/Mode 7 rendering method. Because of this choice, I have to calculate the color of every pixel on the screen manually.
My first ...
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 ...
3
votes
2answers
174 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 ...
0
votes
0answers
68 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 ...
1
vote
1answer
148 views
libgdx - How to draw some pixel
I am trying to alter a pixmap and render it, but modified pixels are not shown on screen. I'm not sure if a Pixmap is the best way to do it. Can anyone explain to me where my errors are in the code ...
2
votes
1answer
143 views
Set size for checkbox image in libgdx UI
I can't figure out how to manage checkbox images size. Of course, it is possible to create different size of image in my Texture atlas and take appropriate one, but I don't want to do that.
Here is ...
1
vote
1answer
168 views
Libgdx tutorial: cannot open desktop application
I'm trying to follow through the libgdx tutorial (https://code.google.com/p/libgdx/wiki/ProjectSetupNew), but I can't run the Desktop Application. I read up on this, and some people said this would ...
4
votes
1answer
137 views
Converting An Image To A Buffer In Java
I am trying to implement some simple 3D functionality into a game I am currently developing. I am utilizing the LibGDX Game Engine to accomplish this goal, as it seemed to integrate nicely with ...
1
vote
1answer
128 views
Sbt LibGdx: Build chain hangs in packaging step
I created a project using the g8 template ajhager/libgdx-sbt-project and want to run it in the android emulator.
I had to change sbt version to 0.12.2 for the repository only has sbt-android-plugin ...
3
votes
2answers
370 views
How to pause and resume in LibGDX using the back key?
I'm creating a game using LibGDX. Now I have two problems.
First, I'm trying to catch back key so that the game will pause. I'm already calling the Gdx.input.setCatchBackKey(true) method in my Game ...
0
votes
0answers
21 views
new Texture(Gdx.files.absolute(string)); is giving vague output
i am taking a picutre from camera and crop the image for face and than saved that cropped image.
After than i am using the path of that saved image i am loading it as a texture of LibGdx.
problem is ...
0
votes
1answer
67 views
libgdx: Request GPS geolocation?
Is there a way to get the users geolocation using libgdx? Or do I have to implement it for Android and iOS independently?
0
votes
1answer
394 views
LibGDX and ScrollPane with multiple widgets
Trying to add multiple items to a scrollpane I quickly found that all "addActor" functions are Unsupported. So, I went with adding a table with all the items I wanted (this code misses a image that I ...
0
votes
1answer
72 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
50 views
How do I make post requests to an S3 bucket using REST?
I have an android game written in libGDX (a cross-platform java sdk), and I want to log session data and send it up to an s3 bucket. I don't want to use the aws mobile sdk because I want the ...
1
vote
2answers
50 views
Objects getting jerks when moving camera in downward direction
I have been making a game in which there is number of objects in negative 'y' for which I had taken the arrayList and I am moving the main character in downward direction.But when the camera move with ...
0
votes
1answer
202 views
Sprite not moving properly. libgdx
I'm new to libgdx, I'm trying to make a sprite move while the camera follows. I can make the sprite move perfectly until I attach the camera to it. When I click, the sprite will move wherever it feels ...
0
votes
3answers
108 views
LibGDX not running render() method
I'm experiencing a problem using LibGDX.
I have a Screen and in its render method I have:
public class LoadingScreen implements Screen{
private OrthographicCamera guiCam;
private TankChallenge ...
3
votes
1answer
99 views
libgdx: android build has graphical glitches
Currently I'm trying to make replica of pacman with libgdx. I done tile map renderer and got a graphical glitch, but glitch only appears in Android build. In first pic you can see that image is ...
0
votes
0answers
101 views
Android Libgdx app startes only after resinstall or reboot
The main problem is that the app starts only after installation or reboot.
Second time the application does not run correctly.
Details are below.
I have encountered with a few strange problems
1) ...
0
votes
2answers
215 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
0answers
105 views
how to create multi-page screen with libgdx scene2d?
I want to create a multi-page level selection screen (just like in angry birds level selection) that user could navigate between pages by dragging (swiping) his/her finger on the screen horizontally.
...
0
votes
0answers
82 views
android libgdx font isn't drawing
I have got a background picture and want to draw text on it, but it isn't working.
There is only the picture on the screen.
private SpriteBatch spriteBatch;
private Texture splsh;
private BitmapFont ...
0
votes
1answer
29 views
Exception in launch application in libgdx
LwjglApplicationConfiguration cfg = new LwjglApplicationConfiguration();
cfg.title = "my-gdx-game";
cfg.useGL20 = false;
cfg.width = 480;
cfg.height = 320;
new ...
0
votes
0answers
100 views
Pre-emptive collisions with LibGdx
My current entity engine uses a quadtree that loops through all the Entities (an Array) and then checks for collisions using a libgdx Rectangle instance that every entity has.
My QuadTree (Its ...
0
votes
1answer
73 views
How to exit the application which consists of few classes?
My first class "public class MyActivity extends Activity"
immediately runs another class "public class MyActivity2 extends AndroidApplication",
which runs Libgdx "class MyGame".
I exit MyGame class ...
1
vote
1answer
124 views
libGDX: Hanging Rope [duplicate]
I am new to android libGDX game engine and searching form many days to make a hanging rope,
I also read out all the Box2D documentation, There is a method ropJoint but no enough explanation given to ...
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 ...
1
vote
1answer
63 views
how to make executable for mac and ubuntu in libgdx
I've never made a program into an executable for mac or ubuntu , and I've been looking into how to do this for some time now but didn`t got any results. I have been able to build my game for android, ...
-1
votes
1answer
57 views
Half Android & Half Libgdx, [closed]
I need help with designing menu and level up as well as Game Over screens in Android and develop game playing screen in Libgdx. I mean Half Android & Half LibGdx. I know that LibGdx has a good ...
0
votes
1answer
91 views
Libgdx does not get screen resolution correctly on Android 4
I have Sony Xperia P with 960*540 resolution and with Android 4.04.
Libgdx 0.9.7 (December, 2012) detects it's resolution
as 569*320.
The code is here:
public void create() {
...
0
votes
1answer
130 views
How to manage back button with multiple screens in Libgdx?
If there is some way how to manage back button in Libgdx?
for example in Andengine I have implemented this like that:
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
if ...


