Details
Add Colors BleachBypass effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > Colors > BleachBypass
*without and with Camera Filter Pack Colors BleachBypass
Property |
Range |
Default |
---|---|---|
Value | -1f to 2f | 1f |
Manipulate Colors BleachBypass by script
Example:
// Drag and Drop your Camera GameObject
// with the Colors BleachBypass component
// to your current script on the CamFX_Colors_BleachBypass field
public CameraFilterPack_Colors_BleachBypass CamFX_Colors_BleachBypass;
void Update()
{
CamFX_Colors_BleachBypass.Value = 1f;
}