Details
Add Blur Steam effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > Blur > Steam
*without and with Camera Filter Pack Blur Steam
Property |
Range |
Default |
---|---|---|
Radius | 0 to 1 | 0.1f |
Quality | 0 to 1 | 0.75f |
Manipulate Blur Steam by script
Example:
// Drag and Drop your Camera GameObject
// with the Blur Steam component
// to your current script on the CamFX_Blur_Steam field
public CameraFilterPack_Blur_Steam CamFX_Blur_Steam;
void Update()
{
CamFX_Blur_Steam.Radius = 0.1f;
}