PBR Shader Node for Blender
PBR (Physically Based Rendering) seems to be the standard for photorealistic rendering in these days. All major rendering and texturing packages like 3D-Coat, Substance Painter or Marmoset already have this lighting model implemented. Blender is going to include a real-time PBR viewport in version 2.8. However, no need to wait for the new release, thanks to the Cycles Render, we can already create a dedicated node setup for the PBR shader. We can also use this shader for rendering material maps baked in other programs that already works on the PBR basis.
1 Building a PBR Shader Node
There have been already published many node setups implementing a PBR shader, but I wanted to make a more versatile setup that would enable to modify things like texture color tint, exposure, etc within a single node. Moreover, I have included the fix to remove some artifact caused by rendering normal maps (viz this post).
To build a PBR shader we need to take into account these material features:
- Albedo Map - defines the material color under diffuse light. Compared to the diffuse map, albedo doesn't contain any directional light or ambient occlusion which should be provided by a separate map. However, if not aspiring for perfect physical accuracy, we can use diffuse map as well.
- Ambient Occlusion Map - represents occluded light based on the 3D geometry of the material surface.
- Metalness Map - specifies dielectric (black 0.0) or metallic (white 1.0) reflection type.
- Roughness Map - specifies smooth (black 0.0) or rough (white 1.0) microsurface.
- Height Map - material surface displacements described by a greyscale image.
- Normal Map - material surface displacements described by a RGB image.
- Fresnel Effect (IOR value) - is quite complicated physical effect, hard to implement accurately in Blender. Basically, the material reflection increases with angle of incidence, so the object rim at grazing angles is more reflexive than the rest of the object. Blender's Fresnel node approximates that behavior by IOR (index of reflection) value, but we should also consider that this effect decreases with growing roughness.
Download
- Download a blend file with the PBR shader node (made in Blender 2.78).
Comments
Comments powered by Disqus