Details

Add Distortion FishEye effect to your camera.

Add it to the Camera GameObject via the Components menuCameraFilterPack > Distortion > FishEye

*without and with Camera Filter Pack Distortion FishEye


Property

Range

Default

Distortion 0 to 1 0.35f

Manipulate Distortion FishEye by script

Example:

// Drag and Drop your Camera GameObject 
// with the Distortion FishEye component 
// to your current script on the CamFX_Distortion_FishEye field 

public CameraFilterPack_Distortion_FishEye CamFX_Distortion_FishEye; 

void Update() 
{
	CamFX_Distortion_FishEye.Distortion =  0.35f;
}