Details

Add Drawing Paper2 effect to your camera.

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

*without and with Camera Filter Pack Drawing Paper2


Property

Range

Default

Pencil_Size 0.0001f to 0.0022f 0.0008f
Pencil_Correction 0 to 2 0.76f
Intensity 0 to 1 1.0f
Speed_Animation 0 to 2 1f
Corner_Lose 0 to 1 0.85f
Fade_Paper_to_BackColor 0 to 1 0f
Fade_With_Original 0 to 1 1f

Manipulate Drawing Paper2 by script

Example:

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

public CameraFilterPack_Drawing_Paper2 CamFX_Drawing_Paper2; 

void Update() 
{
	CamFX_Drawing_Paper2.Pencil_Size =  0.0008f;
}