Texture: Difference between revisions
Jump to navigation
Jump to search
(Mention a new .vtf batch converter) |
Kestrelguy (talk | contribs) m (updated language bar.) |
||
Line 1: | Line 1: | ||
{{ | {{lang|Texture}}[[Category:Glossary]][[Category:Material System]] | ||
| | |||
A [[texture]] is a two-dimensional [[Wikipedia:Raster graphics|raster]] image in the context of a game engine. Textures in Source are stored in the [[Valve Texture Format]], and with a very few exceptions are only accessed through an intermediate [[material]]. | A [[texture]] is a two-dimensional [[Wikipedia:Raster graphics|raster]] image in the context of a game engine. Textures in Source are stored in the [[Valve Texture Format]], and with a very few exceptions are only accessed through an intermediate [[material]]. | ||
Line 9: | Line 5: | ||
== Tutorials == | == Tutorials == | ||
* [[Adapting PBR Textures to Source]] | * [[Adapting PBR Textures to Source]] | ||
* [[Creating a Material]] (including texture creation) | * [[Creating a Material]] (including texture creation) | ||
Line 15: | Line 10: | ||
* [[UV mapping]] | * [[UV mapping]] | ||
== See | == See Also == | ||
* [[Material]] | * [[Material]] | ||
* [[Valve Texture Format]] | * [[Valve Texture Format]] | ||
* [[VTFEdit]], [[VTF Shell Extensions]] and [https://sr.ht/~b5327157/no_vtf/ no_vtf] | * [[VTFEdit]], [[VTF Shell Extensions]] and [https://sr.ht/~b5327157/no_vtf/ no_vtf] | ||
* [[Material Download Sites]] | * [[Material Download Sites]] | ||
Revision as of 08:44, 9 May 2022
A texture is a two-dimensional raster image in the context of a game engine. Textures in Source are stored in the Valve Texture Format, and with a very few exceptions are only accessed through an intermediate material.
While the most common type of texture is the albedo, there are many different uses for raster images in modern game engines. For instance bump maps, which encode three-dimensional height and facing in the color value of each pixel, or specular masks, which determine the intensity of a specular reflection.
Tutorials
- Adapting PBR Textures to Source
- Creating a Material (including texture creation)
- Applying Textures (in Hammer)
- UV mapping