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


*without and with Camera Filter Pack Colors Brightness
Property |
Range |
Default |
---|---|---|
_Brightness | 0 to 2 | 1.5f |
Manipulate Colors Brightness by script
Example:
// Drag and Drop your Camera GameObject
// with the Colors Brightness component
// to your current script on the CamFX_Colors_Brightness field
public CameraFilterPack_Colors_Brightness CamFX_Colors_Brightness;
void Update()
{
CamFX_Colors_Brightness._Brightness = 1.5f;
}