Details
Add FX Grid effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > FX > Grid
*without and with Camera Filter Pack FX Grid
Property |
Range |
Default |
---|---|---|
Distortion | 0 to 5 | 1.0f |
Manipulate FX Grid by script
Example:
// Drag and Drop your Camera GameObject
// with the FX Grid component
// to your current script on the CamFX_FX_Grid field
public CameraFilterPack_FX_Grid CamFX_FX_Grid;
void Update()
{
CamFX_FX_Grid.Distortion = 1.0f;
}