Details

Add Vision Drost effect to your camera.

Add it to the Camera GameObject via the Components menuCameraFilterPack > Vision > Drost

*without and with Camera Filter Pack Vision Drost


Property

Range

Default

Intensity 0f to 0.4f 0.4f
Speed 0f to 10f 1f

Manipulate Vision Drost by script

Example:

// Drag and Drop your Camera GameObject 
// with the Vision Drost component 
// to your current script on the CamFX_Vision_Drost field 

public CameraFilterPack_Vision_Drost CamFX_Vision_Drost; 

void Update() 
{
	CamFX_Vision_Drost.Intensity =  0.4f;
}