0
votes
1answer
198 views

Load image with libgdx

I am trying to load two images on the java application built by libgdx library. I loaded the background image however, I could not load the other images on to the screen if I am not set the position ...
1
vote
1answer
234 views

Render from libgdx into a Java Image, completely off-screen

I am new to libgdx, and am trying to render (thumbnail-sized) images of ~100 objects from a working game engine into Java Images that I can display in a Swing application. I can render them on-screen ...
0
votes
2answers
224 views

If I use “image=new Image(…)” many times. Will I collect garbage in memory?

I need to change texture for my "image" many times in my game. Image image; stage1.AddActor(image); image = new Image(texture1); image = new Image(texture2); image = new Image(texture1); image ...
0
votes
1answer
121 views

can't get my code to to spawn a image within the dimensions of another image. using LibGDX

Hi I have setup 2 rectangles rectangle 1 and rectangle 2 I want to spawn a image between the current X + the width position of the first image. but i cannot seem to get this to worth as it throws an ...
0
votes
1answer
634 views

Is there a method that checks if an libgdx Scene2d Image or Actor is touched?

here's my sample from the libgdx android game that I want to create. Nothing special yet, cause I'm just starting my adventure with Android games. Here is a couple of questions I would like to get ...
2
votes
1answer
838 views

android & libgdx - how to use resources only once for both desktop and android projects?

i'm a little new to libgdx library (opengl wrapper library) under android . i've noticed that the examples have the same resources files (images) on both the desktop and android projects. is there a ...
0
votes
1answer
421 views

Generating Very Large Images at Runtime with OpenGL and libgdx

I am generating very large hex grids (up to 120k total hexes at 32px wide hexes results in over 12k wide images) and I'm trying to find an efficient way to bind these to OpenGL textures in libgdx. I ...