Details
Add Blur DitherOffset effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > Blur > DitherOffset
*without and with Camera Filter Pack Blur DitherOffset
Property |
Range |
Default |
---|---|---|
public | 0 to 20 | 4 |
Manipulate Blur DitherOffset by script
Example:
// Drag and Drop your Camera GameObject
// with the Blur DitherOffset component
// to your current script on the CamFX_Blur_DitherOffset field
public CameraFilterPack_Blur_DitherOffset CamFX_Blur_DitherOffset;
void Update()
{
CamFX_Blur_DitherOffset.public = 4;
}