Details
Add Film Grain effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > Film > Grain
*without and with Camera Filter Pack Film Grain
Property |
Range |
Default |
---|---|---|
Value | -64f to 64f | 32f |
Manipulate Film Grain by script
Example:
// Drag and Drop your Camera GameObject
// with the Film Grain component
// to your current script on the CamFX_Film_Grain field
public CameraFilterPack_Film_Grain CamFX_Film_Grain;
void Update()
{
CamFX_Film_Grain.Value = 32f;
}