Details
Add Blur Focus effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > Blur > Focus
*without and with Camera Filter Pack Blur Focus
Property |
Range |
Default |
---|---|---|
CenterX | -1 to 1 | 0f |
CenterY | -1 to 1 | 0f |
_Size | 0 to 10 | 5f |
_Eyes | 0.12f to 64 | 2f |
Manipulate Blur Focus by script
Example:
// Drag and Drop your Camera GameObject
// with the Blur Focus component
// to your current script on the CamFX_Blur_Focus field
public CameraFilterPack_Blur_Focus CamFX_Blur_Focus;
void Update()
{
CamFX_Blur_Focus.CenterX = 0f;
}