Details
Add Vision AuraDistortion effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > Vision > AuraDistortion
*without and with Camera Filter Pack Vision AuraDistortion
Property |
Range |
Default |
---|---|---|
Twist | 0f to 2f | 1f |
Speed | -4f to 4f | 1f |
PosX | -1f to 2f | 0.5f |
PosY | -1f to 2f | 0.5f |
Manipulate Vision AuraDistortion by script
Example:
// Drag and Drop your Camera GameObject
// with the Vision AuraDistortion component
// to your current script on the CamFX_Vision_AuraDistortion field
public CameraFilterPack_Vision_AuraDistortion CamFX_Vision_AuraDistortion;
void Update()
{
CamFX_Vision_AuraDistortion.Twist = 1f;
}