Details

Add Drawing CellShading2 effect to your camera.

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

*without and with Camera Filter Pack Drawing CellShading2


Property

Range

Default

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

Manipulate Drawing CellShading2 by script

Example:

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

public CameraFilterPack_Drawing_CellShading2 CamFX_Drawing_CellShading2; 

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