Details

Add Drawing Lines effect to your camera.

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

*without and with Camera Filter Pack Drawing Lines


Property

Range

Default

Number 0.1f to 10f 1f
Random 0f to 1f 0.5f

Manipulate Drawing Lines by script

Example:

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

public CameraFilterPack_Drawing_Lines CamFX_Drawing_Lines; 

void Update() 
{
	CamFX_Drawing_Lines.Number =  1f;
}