Details
Add FX Psycho effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > FX > Psycho
*without and with Camera Filter Pack FX Psycho
Property |
Range |
Default |
---|---|---|
Distortion | 0 to 1 | 1.0f |
Manipulate FX Psycho by script
Example:
// Drag and Drop your Camera GameObject
// with the FX Psycho component
// to your current script on the CamFX_FX_Psycho field
public CameraFilterPack_FX_Psycho CamFX_FX_Psycho;
void Update()
{
CamFX_FX_Psycho.Distortion = 1.0f;
}