Details

Add Noise TV effect to your camera.

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

*without and with Camera Filter Pack Noise TV


Property

Range

Default

Fade 0f to 1f 1f

Manipulate Noise TV by script

Example:

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

public CameraFilterPack_Noise_TV CamFX_Noise_TV; 

void Update() 
{
	CamFX_Noise_TV.Fade =  1f;
}