Details
Add Blur Bloom effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > Blur > Bloom
*without and with Camera Filter Pack Blur Bloom
Property |
Range |
Default |
---|---|---|
Amount | 0 to 10 | 4.5f |
Glow | 0 to 1 | 0.5f |
Manipulate Blur Bloom by script
Example:
// Drag and Drop your Camera GameObject
// with the Blur Bloom component
// to your current script on the CamFX_Blur_Bloom field
public CameraFilterPack_Blur_Bloom CamFX_Blur_Bloom;
void Update()
{
CamFX_Blur_Bloom.Amount = 4.5f;
}