Details

Add Edge Neon effect to your camera.

Add it to the Camera GameObject via the Components menuCameraFilterPack > Edge > Neon

*without and with Camera Filter Pack Edge Neon


Property

Range

Default

EdgeWeight 1 to 10 1f

Manipulate Edge Neon by script

Example:

// Drag and Drop your Camera GameObject 
// with the Edge Neon component 
// to your current script on the CamFX_Edge_Neon field 

public CameraFilterPack_Edge_Neon CamFX_Edge_Neon; 

void Update() 
{
	CamFX_Edge_Neon.EdgeWeight =  1f;
}