mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-16 09:21:12 +00:00
9 lines
271 B
Text
9 lines
271 B
Text
|
|
||
|
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;
|
||
|
}
|