Details

Add Sharpen Sharpen effect to your camera.

Add it to the Camera GameObject via the Components menuCameraFilterPack > Sharpen > Sharpen

*without and with Camera Filter Pack Sharpen Sharpen


Property

Range

Default

Value 0.001f to 100 4.0f
Value2 0.001f to 32 1.0f

Manipulate Sharpen Sharpen by script

Example:

// Drag and Drop your Camera GameObject 
// with the Sharpen Sharpen component 
// to your current script on the CamFX_Sharpen_Sharpen field 

public CameraFilterPack_Sharpen_Sharpen CamFX_Sharpen_Sharpen; 

void Update() 
{
	CamFX_Sharpen_Sharpen.Value = 4.0f;
}