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