mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 17:01:28 +00:00
8 lines
190 B
Text
8 lines
190 B
Text
|
|
||
|
void SetupMaterial(inout Material material)
|
||
|
{
|
||
|
material.Base = ProcessTexel();
|
||
|
material.Normal = ApplyNormalMap(vTexCoord.st);
|
||
|
material.Bright = texture2D(brighttexture, vTexCoord.st);
|
||
|
}
|