Details
Add Vision Plasma effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > Vision > Plasma
*without and with Camera Filter Pack Vision Plasma
Property |
Range |
Default |
---|---|---|
Value | -2f to 2f | 0.6f |
Value2 | -2f to 2f | 0.2f |
Intensity | 0f to 60f | 15f |
Manipulate Vision Plasma by script
Example:
// Drag and Drop your Camera GameObject
// with the Vision Plasma component
// to your current script on the CamFX_Vision_Plasma field
public CameraFilterPack_Vision_Plasma CamFX_Vision_Plasma;
void Update()
{
CamFX_Vision_Plasma.Value = 0.6f;
}