Details
Add Drawing Paper effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > Drawing > Paper
*without and with Camera Filter Pack Drawing Paper
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.5f |
Fade_Paper_to_BackColor | 0 to 1 | 0f |
Fade_With_Original | 0 to 1 | 1f |
Manipulate Drawing Paper by script
Example:
// Drag and Drop your Camera GameObject
// with the Drawing Paper component
// to your current script on the CamFX_Drawing_Paper field
public CameraFilterPack_Drawing_Paper CamFX_Drawing_Paper;
void Update()
{
CamFX_Drawing_Paper.Pencil_Size = 0.0008f;
}