Details

Add Drawing Halftone effect to your camera.

Add it to the Camera GameObject via the Components menuCameraFilterPack > Drawing > Halftone

*without and with Camera Filter Pack Drawing Halftone


Property

Range

Default

Threshold 0 to 1 0.6f
DotSize 1 to 16 4f

Manipulate Drawing Halftone by script

Example:

// Drag and Drop your Camera GameObject 
// with the Drawing Halftone component 
// to your current script on the CamFX_Drawing_Halftone field 

public CameraFilterPack_Drawing_Halftone CamFX_Drawing_Halftone; 

void Update() 
{
	CamFX_Drawing_Halftone.Threshold =  0.6f;
}