Details
Add Drawing NewCellShading effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > Drawing > NewCellShading
*without and with Camera Filter Pack Drawing NewCellShading
Property |
Range |
Default |
---|---|---|
Threshold | 0 to 1 | 0.2f |
Manipulate Drawing NewCellShading by script
Example:
// Drag and Drop your Camera GameObject
// with the Drawing NewCellShading component
// to your current script on the CamFX_Drawing_NewCellShading field
public CameraFilterPack_Drawing_NewCellShading CamFX_Drawing_NewCellShading;
void Update()
{
CamFX_Drawing_NewCellShading.Threshold = 0.2f;
}