Details

Add Drawing Toon effect to your camera.

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

*without and with Camera Filter Pack Drawing Toon


Property

Range

Default

Threshold 0 to 2 1f
DotSize 0 to 8 1f

Manipulate Drawing Toon by script

Example:

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

public CameraFilterPack_Drawing_Toon CamFX_Drawing_Toon; 

void Update() 
{
	CamFX_Drawing_Toon.Threshold =  1f;
}