Details
Add Film ColorPerfection effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > Film > ColorPerfection
*without and with Camera Filter Pack Film ColorPerfection
Property |
Range |
Default |
---|---|---|
Gamma | 0f to 4f | 0.55f |
Manipulate Film ColorPerfection by script
Example:
// Drag and Drop your Camera GameObject
// with the Film ColorPerfection component
// to your current script on the CamFX_Film_ColorPerfection field
public CameraFilterPack_Film_ColorPerfection CamFX_Film_ColorPerfection;
void Update()
{
CamFX_Film_ColorPerfection.Gamma = 0.55f;
}