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