See-through glass material

For what renderer? I only do Cycles. Where glass is supposed to be a fresnel mix between refraction and glossy - in that order in the mix shader. Your mix with transparency is in reverse. I normally don’t bother with the diffuse and glossy shading replacement, only the shadow one because I can’t rely on caustics to do the job.

So when the light is calculating shadow and hits the transparent shader, I also usually base its color on fresnel. But since it’s the reverse, I do a 1-fresnel to drive its color (for white). Furthermore, you need to invert the IOR (or just base it on layer weight/facing with a curve to not bother). I do a math/power on 1-fresnel (or layer weight/curve) to make sure the rim produce solid black (no light may pass the rim). Make sure normals are pointing outwards.


I made the color slightly green to exaggerate the effect.