Details
Add ColorsAdjust ColorRGB effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > ColorsAdjust > ColorRGB


*without and with Camera Filter Pack ColorsAdjust ColorRGB
Property |
Range |
Default |
---|---|---|
Red | -2f to 2f | 0f |
Green | -2f to 2f | 0f |
Blue | -2f to 2f | 0f |
Brightness | -1f to 1f | 0f |
Manipulate ColorsAdjust ColorRGB by script
Example:
// Drag and Drop your Camera GameObject
// with the ColorsAdjust ColorRGB component
// to your current script on the CamFX_ColorsAdjust_ColorRGB field
public CameraFilterPack_Colors_Adjust_ColorRGB CamFX_ColorsAdjust_ColorRGB;
void Update()
{
CamFX_ColorsAdjust_ColorRGB.Red = 0f;
}