Details

Add Edge Sigmoid effect to your camera.

Add it to the Camera GameObject via the Components menuCameraFilterPack > Edge > Sigmoid

*without and with Camera Filter Pack Edge Sigmoid


Property

Range

Default

Gain 1 to 10 3.0f

Manipulate Edge Sigmoid by script

Example:

// Drag and Drop your Camera GameObject 
// with the Edge Sigmoid component 
// to your current script on the CamFX_Edge_Sigmoid field 

public CameraFilterPack_Edge_Sigmoid CamFX_Edge_Sigmoid; 

void Update() 
{
	CamFX_Edge_Sigmoid.Gain =  3.0f;
}