gzdoom/wadsrc/static/shaders/scene/material_pbr.glsl

9 lines
271 B
Text
Raw Normal View History

2023-03-19 06:18:12 +00:00
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;
}