Details

Add FX Screens effect to your camera.

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

*without and with Camera Filter Pack FX Screens


Property

Range

Default

Tiles 0f to 256f 8f
Speed 0f to 5f 0.25f
PosX -1f to 1f 0f
PosY -1f to 1f 0f

Manipulate FX Screens by script

Example:

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

public CameraFilterPack_FX_Screens CamFX_FX_Screens; 

void Update() 
{
	CamFX_FX_Screens.Tiles =  8f;
}