# Shader: rendinst_refraction
## Overview
This shader is designed for glass surfaces with a refraction effect.
It's a computationally expensive shader with several limitations, so use it
carefully.
- **Z-Buffer limitation:** When several assets with this shader overlaps, shader
can't sort them properly – drawing order of polygons may be incorrect, and
geometry that closer to the camera may appear further away, and vise versa.
Overlapping polygons also do not refract properly.
- **Screen-space limitation:** Shader affects whole rendered image, no matter if
geometry is behind the refractive surface or in front of it. So, for example,
weapon and character's hands would be refracted as well, so it's better not to
use way too strong parallax effect to make such limitation less noticeable.
**Recommendations**:
- Apply this shader to individual objects within enclosed spaces.
- Position objects carefully to avoid overlap in the frame, as this shader isn't
ideal for scenes with layered glass effects (e.g., a "crystal palace"
setting).
- If using glass walls or doors, use them sparingly, and plan the layout to
avoid sightlines through multiple glass objects in succession.
## Textures
- **_tex_d.tif**
- **RGB** – Glass color
- **A** – Opacity map
- **_tex_n.tif**
- **RG** – Normals for reflections and parallax shift direction
- **B** – Height map for parallax
- **A** – Smoothness map, which also controls the blur of objects behind the
glass
## Parameters
- `script:t="isShell=1"` – Refraction strength at sharp angles
- `script:t="max_thickness=0.5"` – Maximum parallax thickness
- `script:t="min_thickness=0.01"` – Minimum parallax thickness
- `script:t="is_window=1"` – Parameter for window glass
## Albedo and Opacity Maps
```{note}
The glass color works as a multiplier, meaning the color also influences
transparency.
```
## Normals Map and Smoothness
The normals map modifies the glass surface, affecting both the strength of the
parallax (vertically and horizontally) and the reflections.
Smoothness also alters the surface properties. As the reflection width changes,
so does the blurring strength of the refracted image (objects behind the
surface).
## Height Map
The height map defines the parallax strength in the depth of the surface. It's
best practice to bake the depth range from `0` to `255`. Parallax strength is
controlled separately through shader parameters.
Both illustrations feature parallax based on the normals map. In the second one,
the height map adds more noticeable depth, especially at sharper angles.
```{note}
The height map doesn’t have to correspond exactly to the normals map. You can
add additional elements to the height map for more diverse parallax effects,
while keeping the normals smooth, simulating unevenness on the back side of the
glass rather than the front.
```
## Thickness
This parameter defines the depth of the glass refraction. The greater the depth
and the larger the difference between the minimum and maximum heights, the
stronger the refraction effect.
```{note}
The refraction will also affect objects positioned between the surface and the
camera – such as weapons or character hands. The stronger the refraction, the
more noticeable the effect becomes.
```
script:t="max_thickness=0.001" |
script:t="max_thickness=1" |
script:t="max_thickness=5" |
---|
script:t="max_thickness=0.001" |
script:t="max_thickness=1" |
script:t="max_thickness=5" |
---|