mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
15 lines
426 B
Text
15 lines
426 B
Text
|
|
||
|
Material ProcessMaterial()
|
||
|
{
|
||
|
Material material;
|
||
|
material.Base = getTexel(vTexCoord.st);
|
||
|
material.Normal = ApplyNormalMap(vTexCoord.st);
|
||
|
material.Metallic = texture(metallictexture, vTexCoord.st).r;
|
||
|
material.Roughness = texture(roughnesstexture, vTexCoord.st).r;
|
||
|
material.AO = texture(aotexture, vTexCoord.st).r;
|
||
|
#if defined(BRIGHTMAP)
|
||
|
material.Bright = texture(brighttexture, vTexCoord.st);
|
||
|
#endif
|
||
|
return material;
|
||
|
}
|