Details

Add Glow Glow_Color effect to your camera.

Add it to the Camera GameObject via the Components menuCameraFilterPack > Glow > Glow_Color

*without and with Camera Filter Pack Glow Glow_Color


Property

Range

Default

Amount 0 to 20 4f
Threshold 0 to 1f 0.5f
Intensity 0 to 3f 2.25f
Precision -1 to 1f 0.56f
FastFilter -1f to 1f 4

Manipulate Glow Glow_Color by script

Example:

// Drag and Drop your Camera GameObject 
// with the Glow Glow_Color component 
// to your current script on the CamFX_Glow_Glow_Color field 

public CameraFilterPack_Glow_Glow_Color CamFX_Glow_Glow_Color; 

void Update() 
{
	CamFX_Glow_Glow_Color.Amount =  4f;
}