vote up 4 vote down star
2

What is a good tool to make texture atlases with? I have a 2d game and I am going to need to shove a bunch of small textures into a bigger one for performance reasons. I know of some that do this job for fonts, but what I need now is one for images for my sprite animations.

Any ideas on what would work best?

flag

3 Answers

vote up 1 vote down check

I've often wondered this myself so I'm voting up the question. If you're a python fan, you might want to generate atlases the way I do, using scripts that leverage the Python Imaging Library.

Also, NVIDIA has some free texture atlas tools here:

http://developer.nvidia.com/object/texture_atlas_tools.html

link|flag
vote up 0 vote down

Any reason you can't build them on the fly at load time? With sprite animations that are typically of a regular size this is quite trivial and saves you from having to manage the composite art assets.

link|flag
vote up 0 vote down

I needed the same thing, ended up writing a script for gimp

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.