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
0answers
22 views
Port to iOS from Java on top of libgdx
How to port to iOS from Java on top of libgdx?
What IDE should I use?
Is there any video or just plain text tutrials on this?
0
votes
1answer
16 views
libgdx inputeventlistener events
I added an inputlistener in a stage and in actor A. I only want to fire the event in the stage's listener if the actor being touched is not actor A.
Is there any implemented function that I can use ...
0
votes
0answers
13 views
Collision in Libgdx box2D failing for some bodies
I'm working on my first game using libgdx with box2d. I'm using the debug renderer to test my objects. I created some car like objects. Each car has a main body, which is a large polygon of 6 points ...
0
votes
0answers
14 views
Java libgdx(desktop/android) multiplayer game how to
I have a game called wizard wars that I have been working on. This game needs to allow 2 players to play at one time, and would need a TCP connection to communicate spell creation/destruction ect., ...
1
vote
1answer
41 views
Libgdx Android app crashes at launch
I'm creating an app with libgdx for the desktop and for android devices. The app is working fine on the desktop (windows), and also works fine on Ice Cream Sandwich (tested on a Droid DNA, a Nexus 7 ...
0
votes
0answers
10 views
Libgdx cant draw text out on my screen
Im trying to get a score function on my game to show how much points you got but cant get it to work.
font = new BitmapFont(Gdx.files.internal("data/whitefont.fnt"),
...
0
votes
0answers
13 views
Box2D Body is not removed immediately (LibGDX Android)
I am learning libGDX on android. I am trying to remove body from world after collision. But, some times, bodies are not removed immediately, it takes 2-3 seconds to remove properly.
private void ...
0
votes
2answers
16 views
Keep sprite on screen when movement keys are pressed
How can I make sure the spaceshipSprite stay on the screen when the keys are pressed. I don't want the spaceship to go off the screen.
public void render() {
...
0
votes
2answers
43 views
Unresolved GWT error in LibGDX HTML project
I followed the tutorial here but when I go to 'Problems" tab in order to make Quick Fix it says:
The type com.google.gwt.core.client.EntryPoint cannot be resolved. It
is indirectly referenced ...
0
votes
1answer
31 views
How to manage resolutions with libGdx on Android 2.2?
I tried everything I could, but my libgdx application won't scale down on android 2.2. It displays a full image of 640x480 on a screen of only 480x320. Here's the code I got so far;
private static ...
0
votes
1answer
14 views
libgdx actor bounds and events
Using box2d, I have a static ground in the bottom of the screen and a box falling from above. Trying actor events, the ground fires the event but the falling box doesn't.
Actor creation: (The static ...
0
votes
2answers
33 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
1answer
36 views
LibGdx avoid TouchUp after screen change
Upon touchDown() I call game.setScreen(new ScreenClass(this));
This works great but when it gets to the new screen and I release my mouse (or lift my finger) the new screen is firing a touchUp() ...
0
votes
0answers
22 views
gdxruntimeexception - Android
I've developed an application and tested it on my Samsung Galaxy S3(4.1.2) working great.I tried to test it on Galaxy Grand(4.1.2) but it failed.In the logcat, I found the following:
caused by ...
0
votes
1answer
38 views
libgdx 0.9.8 compilation to html5 not working on phones browser
I am building the libgdx demo app with Gdx setup GUI, then I compile it to html5 and deploy the war.
Everything works fine in a desktop browser, but when I test it in a mobile browser, android 4.1.2 ...
1
vote
1answer
32 views
Libgdx gl10.glLineWidth()
I have this line:
Gdx.gl10.glLineWidth(width);
Now, I do intend to draw a pretty thick line, and, unfortunately when I type in small values like 1 or 5 the line is obviously small. But once I surpass ...
-2
votes
1answer
17 views
LibGdx How to fix a ScrollPane scroll bar position at a specefic position?
How to fix a ScrollPane scroll bar position at a specefic position so that it displays for example the last item of it's child Table instead of the first item Table(default)? I try setScrollX and ...
1
vote
1answer
32 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
3answers
59 views
Importing libgdx project into Eclipse Juno error Cannot find .apk
I am just starting to learn Libgdx, and am in the process of importing the 4 projects[desktop, main java game, android, html] into Eclipse Juno. I have not added any lines of code, just trying to get ...
0
votes
2answers
29 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 box2d mouse joint example
I'm trying to create a game in which user can drag dynamic bodies with a finger.
I searched some examples for a while and I understand that what I need is mouse joint, but while I'm new in libgdx and ...
2
votes
2answers
147 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 ...
2
votes
2answers
515 views
Can't change font color in Libgdx
I'm trying to change the color of the font I use in my application. But whatever I try the font remains black.
I made this font using Hiero font tool.
My code is something like this:
...
0
votes
0answers
21 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
28 views
importing to eclipse just imports android project only
When I try to import from eclipse,and select root directory -> select the folder where I have all the my-gdx-game-android,html,desktop.. It only imports the android and it shows a message:
Could ...
1
vote
1answer
38 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 ...
1
vote
0answers
19 views
ExecutorService not execute after onPause()
I'm currently working on an android game using libgdx. When game close, I need to save data to the server via network in onPause() method. The executorService then submit a task to send data. But ...
1
vote
0answers
37 views
A ball inside a sphere using Bullet
I'm new at Bullet and all 3D and phisycs stuffs, so don't be angry :)
I neen to create a big static rigid sphere and a little dynamic one inside. I want to use the big one like a bottle, so little ...
1
vote
2answers
45 views
What are the Best Practices in Creating Animation to be used in a LibGDX Game?
I've just learned about the capabilities of libGDX in terms of animation. I know how to use the texture packer,read atlases to be used animation, and use the animation class.
I use Adobe Flash to ...
0
votes
0answers
20 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 ...
0
votes
1answer
672 views
LibGDX Box2D physics app crash at launch
I'm using a Win 7 64-bit system. LibGDX gdx-helloworld-android app works fine. It doesn't have any box2D stuff. But when I try to use run a physics demo/test, for example those found at ...
3
votes
1answer
48 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 ...
0
votes
0answers
22 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 ...
1
vote
1answer
32 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
1answer
22 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
40 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 ...
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 ...
0
votes
0answers
16 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 ...
0
votes
1answer
21 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
2answers
31 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 ...
1
vote
1answer
28 views
How get a String Width in Libgdx?
I wonder know how to get a Width of my String in pixels values
Thanks.
3
votes
2answers
554 views
Libgdx game logic in Render?
I'm learning Libgdx and have some questions about updating my game logic during the render method..
I would ideally like to keep my game logic and my render separate. The reason for this is if i have ...
0
votes
1answer
49 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
2answers
57 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
75 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 ...
0
votes
1answer
38 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, ...
1
vote
1answer
31 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
29 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
1answer
53 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 ...
0
votes
2answers
44 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 ...







