mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 17:01:28 +00:00
8 lines
271 B
GLSL
8 lines
271 B
GLSL
|
|
void SetupMaterial(inout Material material)
|
|
{
|
|
SetMaterialProps(material, vTexCoord.st);
|
|
material.Metallic = texture(metallictexture, vTexCoord.st).r;
|
|
material.Roughness = texture(roughnesstexture, vTexCoord.st).r;
|
|
material.AO = texture(aotexture, vTexCoord.st).r;
|
|
}
|