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