Tagged Questions
0
votes
1answer
48 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
1answer
122 views
Exception when trying to read pack file with TextureAtlas
Shouldn't this work?
TextureAtlas atlas = new TextureAtlas(Gdx.files.internal("data/texture.png"));
AtlasRegion region = atlas.findRegion("ape_glad");
Sprite ape= new Sprite(region);
...
0
votes
1answer
71 views
After loading textures application gets short and not controlled freeze
Use libGDX platform. After loading textures my application gets short and not controlled freeze.
@Override
public void render() {
float deltaTime = Gdx.graphics.getDeltaTime();
if ...
0
votes
0answers
226 views
How do I generate mipmap .png and model .obj files for LibGDX?
I'm playing a bit with LibGDX (OpenGL ES 2.0 wrapper for Android).
I found some sample code which used prepared files to load models and mipmap textures for them, e.g., at ...
1
vote
2answers
265 views
LibGDX: Lag after loading textures
One part of my code looks like this:
public void goToMainMenu() {
Assets.LoadMenuTexutres();
Assets.unloadGameTexutres();
game.setScreen(new MainMenuScreen(game));
}
It ...
2
votes
1answer
1k views
Why would transparency not work in LibGdx on Android 2.3.5?
I'm running into trouble with LibGdx developing an 3D Android app. I metioned it briefly in my answer to my own question, but I have been unable to figure out why I cannot get transparency from .png ...
1
vote
1answer
1k views
Applying Visual Effect to Images using OpenGL ES
I am using libgdx for making an Android app that will be using TextureRegions which defines a rectangular area of texture. Now I wan't to apply some visual effects to the TextureRegion using OpenGL ES ...
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 ...
6
votes
2answers
540 views
How to generate textures to fit around shapes?
I have a randomly generated series of EdgeShapes, as shown here:
My question is, how can I fill that bottom area with a texture in order to make it look like the ground?
1
vote
1answer
335 views
will Texture declaration in method scope cause memory leak?
I wonder if this piece of code will cause memory leakage? because I still don't know when is a texture should be disposed. should the texture disposed in the end of method? or dispose it separately ...