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