]> de.git.xonotic.org Git - xonotic/xonotic.wiki.git/blob - Textures.md
fa187cf827df338ed767cfacc275a5fb82c722d0
[xonotic/xonotic.wiki.git] / Textures.md
1 Textures in Xonotic
2 ===================
3
4 {{\>toc}}
5
6 There are 2 material/texture systems in Xonotic that can work together.
7
8 System one
9 ----------
10
11 This system is based off of the texture name, with the suffix denoting what the texture describes.
12
13 |Texture name|Filename|Description|
14 |------------|--------|-----------|
15 |Diffuse|texturename.tga|This is the texture as it will look to an observer without lighting or any other effects.|
16 |Normal|texturename\_norm.tga|Xonotic uses OpenGL style tangent space normal map (Inverted Y/green channel). You can put height map in normal maps alpha channel and it will be used when offset or relief mapping is on. This will give your texture a 3d look.|
17 |/2.Alpha channel|texturename\_norm.tga|If the TGA image is 32bits, the alpha channel will be loaded from the image.|
18 |texturename\_alpha.jpg|**note ONLY works with jpg at the moment** (What does this mean? Why is there a tga entry for this then?)|
19 |Bump map|texturename\_bump.tga|Bump maps are like normal maps in that they allow a texture to be 3d. However, normal maps have higher priorities and so will overwrite bump maps. It is a better idea to use a normal map instead of a bump map, since the roughness of a bump map is limited by a cvar.|
20 |Specular|texturename\_gloss.tga|This map will make your texture more or less shiny. There may be colors in this map.|
21 |Fullbright|texturename\_glow.tga|Areas textured with this map will always glow and shadows will not affect them.|
22 |Team color/custom|texturename\_pants.tga|Areas textured with this map will show the user’s custom or team color. Make it grayscale and leave same area 100% black in diffuse texture.|
23 |Shirt|texturename\_shirt.tga|Like the above, but a secondary color. **Does this still exist?**|
24
25 System two
26 ----------
27
28 Second material system is simplified Quake 3™ shader system.
29 The main difference is that you can use only 1 pass, with a few exceptions:
30 \* Lightmap pass is allowed
31 \* Blend shaders are allowed (blending two diffuse textures + lightmap). Same syntax as in quake3.
32