Tagged Questions
1
vote
0answers
22 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
57 views
Getting gaps between tiled textures with libgdx
So im using libgdx, making a platformer. Im using square tiles for the platforms but when they are drawn some of them have gaps between them. When I zoom in/out or move the camera around the gaps move ...
0
votes
2answers
162 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
1answer
260 views
libgdx texture filters and mipmap
When I try to use mipmap filtering in LibGDX, none of the images appear.
I'm new to LibGDX, and I have a simple 2d scene with three rotating, scaled circles. In order to anti-alias them, I wanted ...
0
votes
0answers
119 views
white rectangle instead TextureRegion (use libgdx)
subjet in the title
loading textures, making
private static Map<String, Texture> textureAlreadyLoad = new HashMap<String, Texture>();
source of loading
String location = ...
1
vote
0answers
244 views
LibGDX - StillModel with textures
I have read this article: https://code.google.com/p/libgdx-users/wiki/GenericTextureBinding
And tried to use it. I am using complex .obj(airplane) and 10 textures. Seems to me everything goes as ...
0
votes
1answer
299 views
LibGDX Texture to ByteBuffer
I am trying to convert a Texture to a Pixmap in LibGDX so I can get all of the pixel data into a ByteBuffer for some experiments, and from what I can tell, I should be able to do this by doing the ...
2
votes
1answer
196 views
LibGDX Saving textures to avoid context loss
I have a texture in my LibGDX based Android app that is created procedurally through FrameBuffers that I need to preserve through context loss, and it seems that the only efficient way to do this is ...
2
votes
1answer
262 views
Bad texture on Android devices with lower GL_MAX_TEXTURE_SIZE
I recently tested one of my games on several Android devices. During that, I came across a weird encounter with Galaxy S2. When I launched the game, the whole game was working fine except the ...
1
vote
1answer
757 views
Drawing large background image with libgdx - best practices?
I am trying to write a libgdx livewallpaper (OpenGL ES 2.0) which will display a unique background image (non splittable into sprites).
I want to target tablets, so I need to somehow be able to ...
1
vote
2answers
456 views
LibGDX FrameBuffer scaling
I'm working on a painting application using the LibGDX framework, and I am using their FrameBuffer class to merge what the user draws onto a solid texture, which is what they see as their drawing. ...
0
votes
1answer
208 views
LibGdx: I am having trouble loading a large background image. I am getting an error saying its not of two squares. Is there a way around this?
Im trying to create a vertical scrolling game that has a level that is 380 X 10000.
When I create the Texture to load the image I get this error:
Caused by: ...
1
vote
0answers
132 views
OpenGL ES context loss with LibGDX
I am working on an app using LibGDX, and I am tackling some of the various issues that result from context loss when the user leaves the app and returns to it. In general, this is not much of a ...
1
vote
1answer
598 views
LibGDX repeating TextureRegion
I am using LibGDX for a project, and at the moment I am trying to tile/repeat a texture across a specific amount of space. At the moment I am simply using a TextureRegion set to the proper size, and ...
0
votes
1answer
54 views
texture is null while creating this from a Pixmap object in thread
try {
URL url = new URL(this.url);
InputStream in = new BufferedInputStream(url.openStream());
ByteArrayOutputStream out = new ByteArrayOutputStream();
byte[] buf = new ...
0
votes
1answer
483 views
How to show reflection of textures in libgdx?
I need to create an OpenGL ES app (preferably using libGDX) that shows a spinning texture that has a reflection of some sort beneath it.
I've searched the web, and found some very old tutorials of ...
0
votes
1answer
470 views
How to save a texture or texture region to a file in libgdx?
well that is pretty much it, I want to modify some textures in libgdx at run time an be able to save them to a file as .png, but I have no idea how to do it. Thanks in advance.
1
vote
0answers
204 views
how to flip a pixmap to draw to a texture in libgdx?
So what I'm trying to do is to generate a background image for my game by drawing pixmaps to a texture. So far I can do that, but now I need to draw the pixmaps flipped in the X or Y axis to the ...
1
vote
1answer
1k views
LibGDX - Sprite to Pixmap
I am using LibGDX for a small app project, and I need to somehow take a series of sprites and place them (or their pixels rather) into a Pixmap. The basic idea is to take random sprites that are ...
2
votes
1answer
2k views
Texture from texturepacker in LibGDX
Trying get my head around the texturewrapper in (the awesome) LibGDX framework I need help.
I would like to bind a texture (accordint to http://code.google.com/p/libgdx/wiki/MeshColorTexture) that ...
0
votes
3answers
1k views
Low framerate when use large textureRegion in libgdx
This is how I've done:
Create textureAtlas with min. Filter = Nearest and mag. Filter = Nearest.
Get a TextureRegion from textureAtlas.findRegion().
draw it to screen using SpriteBatch.
It's very ...
1
vote
3answers
2k views
Managing assets between desktop and device version in libgdx
I'm building a little Android game using libgdx.
For now I have a copy of the game's assets in the desktop project folder and the Android project folder. For some strange reason I have to access those ...
4
votes
3answers
1k views
android & libgdx - disable blurry rendering
i'm trying out libgdx as an opengl wrapper , and i have some issues with its graphical rendering :
for some reason , all images (textures) on android device look a little blurred using libgdx . this ...
4
votes
2answers
684 views
rendering video on a texture in LibGDX
i am new to LibGDX
i'm building a game and i have an animated background that has about 10 seconds of animation (250 frames aprox.) since it's useless to try and build a sprite sheet for this (large ...
4
votes
3answers
7k views
Scrolling parallax background, infinitely repeated in libgdx
I'm making a 2D sidescrolling space shooter-type game, where I need a background that can be scrolled infintely (it is tiled or wrapped repeatedly). I'd also like to implement parallax scrolling, so ...
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 ...
