Texture size and best format

For a game to run smoothly, but still look great what do you all recommend for texture sizes and formats? 1024X1024 for walls? .tga .png .dds, etc?

Also, if I am creating an area that has a lot of walls and hallways, but they will have the same texture on them, should the walls be built at 512 x 512 each or 1024 x 1024 or another size?

Thanks!

  • “Female game developers rock!”*
1 Like

Texture size depends on your project, texture format doesnt matter at all. But .tga is easiest especially when you have an extra texture in the alpha channel.

Check out some of the maps from Epic. It can give you a clue for the specs.

DDS isn’t supported.

There’s a lot of other questions here that should be answered before you can get an answer to the original question! But to give a few examples:

If you’re targeting mobile, then your hardware constraints will typically be 2048x2048 maximum per texture, but you don’t want to reach that because you’ll quickly run out of memory. Typically 512x512 is the high end of the spectrum for textures on mobile devices, anything much higher than that is well beyond excessive.

For low end relatively modern desktops, 1024x1024 is going to be the high end of things. In general though, you’re probably not going to benefit a whole lot if you go very far past 2048x2048 in texture size.

There’s also a few tricks you can use to shave a bit of memory usage as well, like using lower resolution specular maps, and having the highest resolution texture be your normal map. These kinds of tricks will typically play upon your average person’s perception of surface detail. On some projects I’ve been on, I’ve found that people won’t notice much of a difference between a surface with a 1024x1024 normal map, a 512x512 color map, and a 256x256 specular map and a surface with all 1024x1024 texture maps. Of course, different surfaces will have different resolutions for its individual texture maps if you take this approach.

Thanks for the info :slight_smile:

  • “Female game developers rock!”*