PaintBlob
PaintBlob
is a pixel shader available in all Source games since Portal 2. Originally intended for Gel blobs, it can also be used to create realistic hollow ice surfaces, by piercing light through it using normal mapping, and calculating light reflection from its inner layer(backface) onto the outer layer (front face). The final output color of the surface is computed by combining various lighting terms. Also supports fresnel translucency when viewing the surface through itself, creating the illusion of a hollow ice material. Furthermore, a bounding box min and max value can be set to define how "hollow" or "thick" the material surface should be.
$nocull
is not needed for this shader to function properly, however, can be used to visualize the $interior effects on the backface.Contents
Ice Interior Shading Algorithm
The code implements an ice interior shading algorithm to simulate the appearance of ice as a translucent material. The algorithm takes inputs such as the world normal, eye direction, and screen position and uses them to create the illusion of light passing through the surface. The final result is a composite of the blurred enviroment map, the interior color and ambient lighting.
Supported Parameters
Textures & Masks
$basetexture
- Diffuse texture.
$normalmap
- Normal map.
$envmap
- Specular reflection.
$lightwarptexture
- 1D ramp texture for tinting scalar diffuse term.
- Specify that this is the back surface of the ice.Bug:Results in a pixel shader crash if true. [todo tested in?]
- Mask texture for specular reflection.
- 1D ramp texture for controlling fresnel falloff
- Typically, a grayscale texture that defines the opaque and translucent parts of the texture. Tip:Extremely useful in creating realistic scratches on an ice surface.
Outer Layer Parameters
- Scales the output color. Tip:Can be used to brighten the textures.
- Specular exponent values.
- Specular boost values.
- Rim light exponent.
- Rim light boost.
- Base texture tint. Todo: Figure out why this doesn't work.
Interior Volume Parameters
- Enable interior layer.
- Fog strength (scales with thickness of the interior volume).
- Boosts the brightness of bright background pixels.
- Scales the ambient light in the interior volume.
- Scales backlighting in the interior volume.
- Strength of bumped refract of the background seen through the interior.
Additional Parameters
- UV projection scale. Default: 0.02.
- Bump map strength.
- Bump map strength for the fresnel term.
- Fresnel range parameters for the opacity texture.
- Center for UV projection.
- Todo: Functional?
- Darkens the shading of the ice region in areas where it is in contact with a surface.
$bumpframe
- Bump frame.
$alphatest