Details

Add FX Spot effect to your camera.

Add it to the Camera GameObject via the Components menuCameraFilterPack > FX > Spot

*without and with Camera Filter Pack FX Spot


Property

Range

Default

Radius 0f to 256f 0.2f

Manipulate FX Spot by script

Example:

// Drag and Drop your Camera GameObject 
// with the FX Spot component 
// to your current script on the CamFX_FX_Spot field 

public CameraFilterPack_FX_Spot CamFX_FX_Spot; 

void Update() 
{
	CamFX_FX_Spot.Radius =  0.2f;
}