Details

Add Drawing CellShading effect to your camera.

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

*without and with Camera Filter Pack Drawing CellShading


Property

Range

Default

EdgeSize 0 to 1 0.1f
ColorLevel 0 to 10 4f

Manipulate Drawing CellShading by script

Example:

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

public CameraFilterPack_Drawing_CellShading CamFX_Drawing_CellShading; 

void Update() 
{
	CamFX_Drawing_CellShading.EdgeSize =  0.1f;
}