Difference between revisions of "Texture atlas"
EricChadwick (Talk | contribs) (sub tiles) |
EricChadwick (Talk | contribs) (→More Info: added ChannelPacking, updated Modular link, removed Lightmapping, alphabetized.) |
||
Line 40: | Line 40: | ||
== More Info == | == More Info == | ||
+ | * [[ChannelPacking]] | ||
+ | * [[Modular_environments]] | ||
* [[MultiTexture]] | * [[MultiTexture]] | ||
− | + | * [[TextureCoordinates]] | |
− | * [[TextureCoordinates]] | + | |
− | + | ||
== Gutters == | == Gutters == |
Revision as of 10:41, 15 December 2016
A Texture Atlas describes the method of packing many separate textures together into a single texture. Other common names for this are "decal sheet", "packed texture".
Atlases save texture fetches, which can help improve the frame rate.
Each of the textures can be tiled with themselves, just like a regular tiling texture.
The textures can either be cropped out of the atlas by adding more edges to the model and cutting up the texture coordinates (at the expense of increasing the vertex count), or the textures can be arranged as sub-tiles and cropped out using a shader (at the expense of increasing the shader instructions).
Atlas Methods
There are two common atlas methods: one divides a single bitmap into multiple sub-maps (this is usually what artists mean when they say "atlas"), the other method packs different grayscale maps into each color channel (this can be called a multimap or channel packing). The two methods are not exclusive, they can also be used together in the same bitmap.
Tutorials
- 2013-04-08 How to create UE3/UDK Texture Atlases (tileable) - by 'mAlkAv!An', using a custom HLSL node to apply separate UVs for texturing vs. mipmapping.
- 2013-04-02 UDN - Three - TerrainAdvancedTextures - Texture Packing: Implementing large texture tile sets
- 2013-04-02 UDK - how to solve 'frac' artifacts and mipmapping seams - how to implement sub-tiles in UDK, and solve seams.
- 2013-03-13 An easy way to work with separate channels in a "combined texture" - by George "gsokol" Sokol, using Photoshop's Layer Style to improve the texture editing process for channel packing.
- 2012-06-07 The Desert(What can you do with no diffuse maps?) Polycount forum thread. Vertex blending using multiple channel packed modulation textures, in UDK. See also Ditching Diffuse Maps: A foray into artistic reasoning and technical details behind "procedural" texturing, with practical examples on today's tech by Andrew 'd1ver' Maximov.
- 2012-05-28 UDK The Dunes Polycount Forum thread. Using two 256x256 textures to texture an entire scene, one as a normal map and the other channel packed to store four textures.
- 2012-05-01 Digital-Tutors: Multi-Tile Texture Workflows Tutorial ($) - by Justin Marshall / Digital Tutors, using UV organization to assign multiple textures to a single character, and how it works in various 3D apps.
- 2011-10-19 UDK - Material - Multi-UV Changes - more UDK techniques for sub-tiles.
- 2011-10-09 An exercise in modular textures - Scifi lab UDK - by Tor 'Snefer' Frick, an exercise in extreme texture channel packing, packing multiple maps into the four channels of a texture file.
- 2011-09-26 Terrain texture atlas construction - how to properly compile sub-tiles into a large texture sheet.
- 2010-12-20 UV tiling tricks within 0 to 1 space from the Polycount forum
- 2010-12-17 Modular Building Workflow - ($) a 3dmotive tutorial by Tyler Wanlass, covers planning and workflow for modular buildings using Photoshop, 3ds Max, and UDK.
- 2010-11-08 Work-flow for large texture atlases from the Polycount forum
- 2010-06-27 Working with Modular Sets - by Philip 'PhilipK' Klevestav, how to design and texture modular sci-fi wall panels.
- 2010-03-25 Visually Appealing Building Guide - by Christopher Albeluhn, an excellent breakdown of how to create visual interest with game buildings. Additional tutorials here.
- 2008-06-26 Mod Facade Challenge - by Joe 'EarthQuake' Wilson, breaking up a building into modular pieces and designing the texture sheet.
- 2006-11-08 Creating tiling textures in 3dsmax - by Chris 'cholden' Holden
- 2006-01-26 Practical Texture Atlases on Gamasutra by Ivan-Assen Ivanov
- 2005-12-20 Thirding - Utilizing your texture space for environment work - by Ben 'poopinmymouth' Mathis
More Info
Gutters
When a game model is textured using a single texture sheet, the texture will have typically have UV'd areas (UV shells) and blank areas between them (gutters).
The width of the gutter needs to be wide enough to accommodate how much EdgePadding you need. This varies depending on how large the texture is and the texture filtering type used by the game renderer.
Packing Tools
- 2015-05-17 Easy Atlas uses Photoshop and Maya.
- 2014-09-25 MapToAtlas 3ds Max script by Juan "monster" Martinez
- Decent UV Packing Script/Tool? thread on the Polycount forum
- Headus UVLayout ($)
- UV Master script for ZBrush
- TexTools script for 3ds Max
- Xrayunwrap ($) script for 3ds Max
- Texture Atlas Generator script for 3ds Max (creates an atlas by slicing up the mesh)
- Normalize UVs Maxscript for 3ds Max
- Texture Atlas Tools by Nvidia