Details

Add FX DarkMatter effect to your camera.

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

*without and with Camera Filter Pack FX DarkMatter


Property

Range

Default

Speed -10f to 10f 0.8f
Intensity 0f to 1f 1f
PosX -1f to 2f 0.5f
PosY -1f to 2f 0.5f
Zoom -2f to 2f 0.33f
DarkIntensity 0f to 5f 2f

Manipulate FX DarkMatter by script

Example:

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

public CameraFilterPack_FX_DarkMatter CamFX_FX_DarkMatter; 

void Update() 
{
	CamFX_FX_DarkMatter.Speed =  0.8f;
}