Details

Add Blur Tilt_Shift effect to your camera.

Add it to the Camera GameObject via the Components menuCameraFilterPack > Blur > Tilt_Shift

*without and with Camera Filter Pack Blur Tilt_Shift


Property

Range

Default

Amount 0 to 20 3f
Smooth 0 to 1f 0.5f
Size 0 to 1f 0.5f
Position -1 to 1f 0.5f
FastFilter 0 to 1 8

Manipulate Blur Tilt_Shift by script

Example:

// Drag and Drop your Camera GameObject 
// with the Blur Tilt_Shift component 
// to your current script on the CamFX_Blur_Tilt_Shift field 

public CameraFilterPack_Blur_Tilt_Shift CamFX_Blur_Tilt_Shift; 

void Update() 
{
	CamFX_Blur_Tilt_Shift.Amount =  3f;
}