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