Ordinary shading (Lambert, PBR) assumes light hits a surface and bounces straight back from that exact point. But somewhat translucent materials — skin, marble, wax, leaves — let light seep just under the surface, scatter around inside, and exit somewhere else entirely. The result is the soft red glow you see when a thin part (an ear, a fingertip, a leaf’s veins) is lit from behind.
A true SSS simulation computes how far light spreads under the surface per wavelength (color), which is expensive. Real-time graphics reach for far cheaper approximations — this demo’s “wrap lighting” pushes the lit terminator past its usual edge by adding an offset to N·L, and adds a term that lets light from behind the object bleed through more strongly where the shape is thin, faking the sense that light is passing straight through.
Blender’s Principled shader, Maya’s aiStandardSurface, and C4D’s subsurface channel all lean on approximations like this for real-time preview, then switch to a slower, more accurate scattering model for the final render.
When to use
Use it for thin or translucent organic materials — skin, wax, fruit, leaves. Skip it for opaque materials like metal or stone that light can’t pass through at all.