Details

Add Drawing Paper3 effect to your camera.

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

*without and with Camera Filter Pack Drawing Paper3


Property

Range

Default

Pencil_Size 0.0001f to 0.0022f 0.00125f
Pencil_Correction 0 to 2 0.35f
Intensity 0 to 1 1.0f
Speed_Animation 0 to 2 1f
Corner_Lose 0 to 1 1f
Fade_Paper_to_BackColor 0 to 1 0f
Fade_With_Original 0 to 1 1f

Manipulate Drawing Paper3 by script

Example:

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

public CameraFilterPack_Drawing_Paper3 CamFX_Drawing_Paper3; 

void Update() 
{
	CamFX_Drawing_Paper3.Pencil_Size =  0.00125f;
}