Details

Add FX Hypno effect to your camera.

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

*without and with Camera Filter Pack FX Hypno


Property

Range

Default

Speed 0f to 1f 1f
Red -2f to 2f 0f
Green -2f to 2f 1f
Blue -2f to 2f 1f

Manipulate FX Hypno by script

Example:

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

public CameraFilterPack_FX_Hypno CamFX_FX_Hypno; 

void Update() 
{
	CamFX_FX_Hypno.Speed =  1f;
}