Details
Add Distortion Dream2 effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > Distortion > Dream2
*without and with Camera Filter Pack Distortion Dream2
Property |
Range |
Default |
---|---|---|
Distortion | 0 to 100 | 6.0f |
Speed | 0 to 32 | 5.0f |
Manipulate Distortion Dream2 by script
Example:
// Drag and Drop your Camera GameObject
// with the Distortion Dream2 component
// to your current script on the CamFX_Distortion_Dream2 field
public CameraFilterPack_Distortion_Dream2 CamFX_Distortion_Dream2;
void Update()
{
CamFX_Distortion_Dream2.Distortion = 6.0f;
}