# Shader: rendinst_parallax_ice
## Overview
As the name suggests, this shader is designed to simulate translucent ice using
parallax effects. It can be applied to both tiled textures, such as the surface
of a frozen lake, and unique assets, like a sculpted iceberg.
This shader blends two detail layers in a manner similar to the
[rendinst_perlin_layered](rendinst_perlin_layered.md) shader, but without
height-based gradients. A third detail layer is blended differently, using only
its diffuse texture, which is offset "into" the surface and refracted by the
normals of the mixed detail layers.
This shader uses a single UV channel, as
[rendinst_mask_layered](./dng-shaders/rendinst_mask_layered.md) does, and is
intended for relatively flat surfaces. Using it on organic shapes may cause
visual glitches, so it's recommended to make such areas opaque.
## Required Textures
- `tex0`: D1 Diffuse (RGB) + HeightMap (Alpha)
- `tex1`: Diffuse of the internal layer (RGB)
- `tex2`: D1 Normal (RG) + Glossiness (A)
- `tex3`: D2 Diffuse (RGB) + HeightMap (Alpha)
- `tex4`: D2 Normal (RG) + Glossiness (A)
## Optional Textures
- `tex5`: D1 transparency mask. If present, this mask is used for blending
with the internal layer instead of the diffuse alpha. If a detail needs to be
completely transparent or opaque, a black or white placeholder can be used.
- `tex6`: D2 transparency mask. Used similarly to `tex5`.
- `tex7`: Detail blending mask.
```{important}
All masks in `.folder.blk` must have `gamma=1` for correct operation.
```
- `VertexColor`: If available, this is used to force the internal layer to
become opaque in black areas, while white areas remain unchanged. This is
useful for handling the edges of ice chunks to avoid artifacts at corners.
**Only the red channel is checked**, but for simplicity, it is shown as black
and white in the example.
## Parameters
**Color:**
- `inner_layer_depth`: Distance between the surface and the internal layer.
`min=0.0` (no effect). Default: `0.1`
- `inner_layer_mul`: Multiplier for the internal layer's diffuse color,
controlling brightness. Default: `1.0`
- `inner_layer_power`: Exponent that applied to the internal layer's color after
multiplication, used to adjust contrast. Default: `1.0`
Increasing both `power` and `mul` values can produce non-realistic but
artistic effects, such as enhanced contrast and color saturation that give a
glowing appearance. Use these settings sparingly. Here's an extreme example
with `power=3` and `mul=3`:
- `vcol_masked_mul`: Brightness multiplier for blended detail layers in areas
marked white in VertexColor.
- `vcol_masked_power`: Contrast exponent for the same blended detail layers.
- `ior`: Index of refraction, controlling how much the normals of the detail
layers distort the internal layer's diffuse. `min=1.0` (no effect), Default:
`1.31`.
Left to right: `ior=1.0` (no refraction), `1.31` (physically accurate for
ice), and an exaggerated `4.0`. Other parameters, including `depth`, are
identical.
By default, the shader uses a physically accurate value for ice, but you can
adjust the `ior` to weaken or exaggerate the effect for visual purposes.
Adjusting `depth` is also necessary, as increasing `ior` not only intensifies
the internal layer's distortion by detail normals but also brings it visually
closer to the surface.
On the left: `ior=1.31` (default) and `depth=0.1`. On the right: `ior=4.0` and
`depth=1`. These are not physically accurate, but they can be used for
artistic effect. The internal layer becomes less distinct, which can sometimes
be desirable.
ior=1.31 and depth=0.1 |
ior=4.0 and depth=1 |
---|