Details

Add Distortion Heat effect to your camera.

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

*without and with Camera Filter Pack Distortion Heat


Property

Range

Default

Distortion 1 to 100 35.0f

Manipulate Distortion Heat by script

Example:

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

public CameraFilterPack_Distortion_Heat CamFX_Distortion_Heat; 

void Update() 
{
	CamFX_Distortion_Heat.Distortion =  35.0f;
}