Details
Add Blur Blur Hole effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > Blur > Blur Hole
*without and with Camera Filter Pack Blur Blur Hole
Property |
Range |
Default |
---|---|---|
public | 0 to 10 | 10 |
public | 1 to 16 | 0.25f |
public | 0 to 1 | 1 |
public | 0 to 4 | 0.5f |
public | 0 to 1 | 0.5f |
public | 0 to 1 | 1.0f |
public | 0 to 1 | 0.0f |
Manipulate Blur Blur Hole by script
Example:
// Drag and Drop your Camera GameObject
// with the Blur Blur Hole component
// to your current script on the CamFX_Blur_Blur Hole field
public CameraFilterPack_Blur_BlurHole CamFX_Blur_Blur Hole;
void Update()
{
CamFX_Blur_Blur Hole.public = 10;
}