Details

Add TV Distorted effect to your camera.

Add it to the Camera GameObject via the Components menuCameraFilterPack > TV > Distorted

*without and with Camera Filter Pack TV Distorted


Property

Range

Default

Distortion 0 to 10 1.0f
RGB -0.01f to 0.01f 0.002f

Manipulate TV Distorted by script

Example:

// Drag and Drop your Camera GameObject 
// with the TV Distorted component 
// to your current script on the CamFX_TV_Distorted field 

public CameraFilterPack_TV_Distorted CamFX_TV_Distorted; 

void Update() 
{
	CamFX_TV_Distorted.Distortion =  1.0f;
}