Details
Add Noise TV_3 effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > Noise > TV_3
*without and with Camera Filter Pack Noise TV_3
Property |
Range |
Default |
---|---|---|
Fade | 0f to 1f | 1f |
Fade_Additive | 0f to 1f | 0f |
Fade_Distortion | 0f to 1f | 0f |
Manipulate Noise TV_3 by script
Example:
// Drag and Drop your Camera GameObject
// with the Noise TV_3 component
// to your current script on the CamFX_Noise_TV_3 field
public CameraFilterPack_Noise_TV_3 CamFX_Noise_TV_3;
void Update()
{
CamFX_Noise_TV_3.Fade = 1f;
}