Details
Add Blur Tilt_Shift_V effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > Blur > Tilt_Shift_V
*without and with Camera Filter Pack Blur Tilt_Shift_V
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 | -1 to 1f | 8 |
Manipulate Blur Tilt_Shift_V by script
Example:
// Drag and Drop your Camera GameObject
// with the Blur Tilt_Shift_V component
// to your current script on the CamFX_Blur_Tilt_Shift_V field
public CameraFilterPack_Blur_Tilt_Shift_V CamFX_Blur_Tilt_Shift_V;
void Update()
{
CamFX_Blur_Tilt_Shift_V.Amount = 3f;
}