Tag: subsurface scattering

  • Shader Showcase Saturday #8: Subsurface Scattering

    Shader Showcase Saturday #8: Subsurface Scattering

    If you ever placed a strong light source behind your hand, you might have noticed how light is able to filter through the skin. Even more interesting is the fact that light “travels” inside the skin, and can sometimes make the entire hand glow. This optical phenomenon is called subsurface scattering (or SSS)ย and is caused…

  • Fast Subsurface Scattering in Unity (Part 1)

    Fast Subsurface Scattering in Unity (Part 1)

    Most (if not all) optical phenomena that materials exhibit can be replicated by simulating how the individual rays of light propagate and interact. This approach is referred in the scientific literature as ray tracing, and it is often too computationally expensive for any real-time application. Most modern engines rely on massive simplifications that, despite being…

  • Fast Subsurface Scattering in Unity (Part 2)

    Fast Subsurface Scattering in Unity (Part 2)

    This is the second part of the tutorial on Fast Subsurface Scattering in Unity. This post will show a working implementation of this effect. This is a two part series: At the end of this post, you will find a link to download the Unity project.