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 various platforms.

learn more… | top users | synonyms

0
votes
0answers
9 views

How to implement libgdx touchDragged?

I'm beginner in Java and in game development too, I was following some tutorials but now I'm stuck on implementing touchDragged listener using libgdx, here is my code and can anyone suggest how to ...
0
votes
0answers
16 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 ...
0
votes
0answers
12 views

LIBGDX having more than 1 button on the main menu

i have 5 buttons i want to put on the main menu but when i have all 5 actors it doesn't work and when i take them all out and leave one in it works. How do get around having multiple buttons? Here ...
3
votes
1answer
23 views

LIBGDX background for main menu is showing up white

My background image is not showing up, it shows up as a white square in the corner like this. https://dl.dropboxusercontent.com/u/45938379/menu.png I need to know how to fix this, my actors are ...
1
vote
0answers
17 views

Android+LibGDX - textures gone in Android UI activity only after finishing a Libgdx activity?

My situation is this: I have 3 activities: 2 using Android UIs (shown below) and 1 a Libgdx AndroidApplication I can go back and forth from my 2 menu activities all I want and it is WAI I can go to ...
0
votes
0answers
17 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 ...
0
votes
0answers
23 views

Back key is not processed after return from admob adview in libgdx

2 ways to reproduce the problem: * touch on the ads from admob, drag to normal area of game screen, now pressing the back key will cause the app dissmiss(going to background?) click on the ads and ...
1
vote
1answer
23 views

Disable multitouch in libgdx

I use Stage and Actors in my project. Can I disable and enable multitouch in runtime? I'm using libgdx 0.9.7. Sorry for my English.
0
votes
0answers
12 views

How to unbind a sprite in an updating vector?

How to unbind an updating vector to a sprite? I am using Libgdx framework. here is my code public class VectorSample extends GDX_TEST implements InputProcessor { Texture ball,bullet,guider; ...
0
votes
1answer
15 views

LIBGDX creating actors and stage for the main menu

I need to know how i would go about setting up a stage and adding actors to it for my main menu. Here is my code so far public class MainMenu implements Screen { CrazyZombies game; Stage stage; ...
0
votes
0answers
12 views

Bullet libGDX - Camera follow entinty

How can i create camera that will follow my entity. For now I have static body and i just move it by constant value and then move camera the same. But I want make this body dynamic. This value will ...
3
votes
1answer
73 views

Launch LibGDX project with Android Studio

I've used "setup UI" to generate my LibGDX game projects. Then I've imported them into Android Studio . It didn't show any errors at first , but when I've tried to run the android project , it gave me ...
1
vote
1answer
22 views

How get a String Width in Libgdx?

I wonder know how to get a Width of my String in pixels values Thanks.
0
votes
1answer
18 views

Repeating Texture on Model/Mesh

When I just draw texture on SpriteBatch and set TextureWrap.Repeat everything is OK. But now I have 3D scene and I want have ground and texture must be repeated on model/mesh and this just don' t ...
0
votes
1answer
41 views

How to write iOS backend like (Game Center, IAP etc.) with libGDX?

I write game on libGdx and testing it on Android. All code I write on Java, because libGDX use Java language. How can I write iOS backend on Objective C and link it with Java libGDx core? Is any ...
1
vote
0answers
34 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
2answers
19 views

Errors in 'com/badlogic/gdx/backends/gwt/GwtApplication.java encountered in HTML 5

Recently I have come to know about this awesome framework i.e Libgdx. I am completely new to this framework and hence a few hitches are obvious. I have cloned the entire repository and I have also run ...
0
votes
1answer
29 views

3D PerspectiveCamera Rendering Depth libgdx OpenGL ES 2.0

I seem to be having a problem getting libgdx to render things correctly. I render 2 colored triangles using the vertices: Triangle 1(blue): (-1.0f, 0.0f, -1.0f), (1.0f, 0.0f, -1.0f), (0.0f, 1.0f, ...
0
votes
1answer
44 views

libgdx on ios GdxRuntimeException couldn't load file

I decided to move my application from Android to iOS. Application use libgdx library. I generated ios subproject using libgdx and opened it using Xamarin Studio. All images are linked from ...
1
vote
1answer
23 views

libgdx - box2d velocity and forces not working

I have a very simple LibGDX game that uses Box2d. Right now, it is just a ship that moves around on a map. I can make the ship move with keyboard controls if I use the body.setTransform() ...
0
votes
0answers
23 views

Same code different outcome in LIBDGDX

I finally created a working image that point it self where the cursor is by breaking down the code i got from here https://github.com/cmaher/SGAS. One thing i dont understand though is that i tried ...
0
votes
2answers
35 views

Breakout ball collision in libgdx

I'm currently trying to make a breakout clone using java and libgdx. I'm currently experiencing trouble getting the ball to bounce off of the blocks at the appropriate angle. In short the problem I'm ...
0
votes
1answer
29 views

LIBGDX how to add sprite from a texture atlas

I need to know how i can add an sprite from a texture atlas so i can implement it as a sprite for my main menu. Here is my code for the main menu. public class MainMenu implements Screen { ...
0
votes
1answer
38 views

Activity lifecycle strange behavior in sleep mode (libGDX game)

I have very strange behavior of Activity in my LibGDX game - when I play game and then press power button sending device to sleep mode. I've added logs to Activity's callback methods and that's what I ...
0
votes
1answer
49 views

Texture Randomly Generated and Sized Rects

I'm making a game (libgdx & box2d) with randomly generated planets having skyscrapers on them - see image below. The Skyscrapers are random in their position, width and height. I'm now looking ...
1
vote
2answers
41 views

LIBGDX creating a main menu

So i want to create a mainmenu for my game and i'm stuck on what to do next i have all the art done and it's all in layers and packed in a .pack public class MainMenu implements Screen { ...
0
votes
1answer
24 views

AdView and layout. I can't run ads in Libgdx Android app

TapForTap's code looks easy for simple Android app: setContentView(R.layout.main); AdView adView = (AdView) findViewById(R.id.ad_view); ad_view is defined in XML: ...
0
votes
1answer
25 views

Unable to dismiss intent activity in libgdx

I have developed a game on libgdx in which I am trying to share text content using Intent. The intent activity is shown when I click on share button in my game. The problem is that the activity ...
0
votes
2answers
41 views

libgdx coordinate system differences between rendering and touch input

I have a screen (BaseScreen implements the Screen interface) that renders a PNG image. On click of the screen, it moves the character to the position touched (for testing purposes). public class ...
0
votes
1answer
31 views

TrueType fonts replaced with FreeType fonts in libgdx?

It seems like TrueType font and font generator is replaced with the FreeType font generator? Is this truly the case, because I found this post detailing its usage (the accepted answer here: TrueType ...
1
vote
1answer
41 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 ...
1
vote
1answer
21 views

ShapeRenderer Transformations Interfering with Mesh Transformations in LibGDX

I'm working on a game with a lot of rotational transformations and I'm running into a problem with something that seems pretty simple - I assume I'm doing something wrong. I draw a triangle with a ...
0
votes
1answer
27 views

Why would I want to use unit scale? (Libgdx)

I have looked into the SuperKaolio example on Libgdx github repo. It is basically a test for integrating Tiled maps with Libgdx. They are using the unit scale 1/16 and if I have understood it ...
0
votes
2answers
34 views

Concept of User Controls in LibGDX

I have a screen in my LibGDX game that will be essentially two columns, the first being 75% of the real estate and containing labels/buttons, and the next being 25% that will contain text and images. ...
0
votes
0answers
90 views

Android 2d game engine why libgdx instead another [closed]

I dont know why, Im confused, Im trying to figure out a good game engine, althouth I m using libgdx, but I see that using this framework is a little dificult, because, it dosent have gui, like a ...
0
votes
1answer
27 views

libgdx & kryonet: threads

I try to develop a game for Android platform, using Libgdx library. For network, I use the Kryonet library. I want to change screen when I'm sure that my application is connected to my server. The ...
2
votes
2answers
33 views

not proper collision in box2d

I am developing a game in which the user have to hit a high speed ball. To hit the ball I have joined a rectangular body with the actor using revolute joint and enabled its motor, to rotate it with a ...
3
votes
0answers
107 views

java and libGDX / LWJGL game fullscreen wrong size for multiple monitors on Ubuntu

I'm working on a libGDX (library on top of LWJGL) game project, and use the Intellij IDEA IDE from several different workstations: Windows 7 x64 laptop with two displays (1920x1080 and 1600x1200), ...
1
vote
1answer
41 views

Drawing a transparent shape in libGDX as an Actor?

I'm trying to draw a simple rect on the screen in a class and using it as an actor. But whatever I do, it seems that there is no option to draw it transparent. Does anyone know how to do this? Thanks ...
0
votes
0answers
31 views

Setting a Screen in LibGDX, Ram Usage is abnormal! (Like 4 GB)

I have been working on a fun RTS- game, and I made it work in Java's own Graphics, but I want to transfer it to the Libgdx library. I'm quite far into understandign how libgdx works, but I'm rather ...
3
votes
1answer
31 views

Libgdx reload scene2d skin after application hidden

I'm having an issue with libgdx skin. When the app is paused or goes into the background and then reopens all my scene2d textures are just showing up black. I assume that the underlying textures ...
0
votes
1answer
42 views

Tween.registerAccessor NoClassDefFoundError

i 'm a newbie for LibGDX and Android. Btw sorry for my bad English. Here is my problem. I just want to make a splash screen with libgdx and i watched Dustin Riley 's libGDX tutorial on youtube. But ...
0
votes
1answer
67 views

Different look of application in android?

I'm developing a game with libgdx. I have a samsung infuse 4g and the game in my computer looks big but in my cellphone looks the way that i want to looks. But when I run the application on the ...
0
votes
0answers
52 views

LibGDX last version issue

Currently I'm starting to use LibGDX with the latest version (0.9.7) and was also following this tutorials: http://steigert.blogspot.com/2012/02/3-libgdx-tutorial-scene2d.html. The thing is that ...
1
vote
1answer
54 views

How can I fix this collision detection block? Java/LibGDX

this is my first time using this so forgive me if I forget or leave something out. I've been working on this brickbreaker game in Java using the LibGDX framework. This is my first java game. I have ...
0
votes
0answers
23 views

Sprite class not drawn when using Sprite.draw(batch) LibGDX

I'm trying to show a texture scaled using the Sprite class. The issue is when I try to run my code. I can show the textures in Android 4.1, but when I run the same program in another Android, for ...
0
votes
0answers
28 views

Different Particles Editor for LibGdx

I'm a newbie in 2d game programming. I currently use for my project libgdx framework. I want create particles effect but the particle editor that came with library is not very easy for me. Is there a ...
0
votes
1answer
26 views

Angle facing other way libgdx

I figured out the convertion of x and y of my cursor to angle however the problem is my sprite is facing the oposite direction. here is the code @Override public void create() { bida = ...
-2
votes
1answer
32 views

How do I keep my LibGDX game running in the background? [closed]

My game has a database that needs to be read from every 15 minutes. How do I keep the game running in the background?
0
votes
1answer
41 views

libgdx - ShapeRenderer in Group.draw renders in wrong colour

MyGroup: public class GShape extends Group{ private ShapeRenderer shape; public GShape() { super(); shape = new ShapeRenderer(); } @Override public void draw(SpriteBatch batch, float ...

1 2 3 4 5 21