Details

Add Colors Sepia effect to your camera.

Add it to the Camera GameObject via the Components menuCameraFilterPack > Colors > Sepia

*without and with Camera Filter Pack Colors Sepia


Property

Range

Default

_Fade 0f to 1f 1.0f

Manipulate Colors Sepia by script

Example:

// Drag and Drop your Camera GameObject 
// with the Colors Sepia component 
// to your current script on the CamFX_Colors_Sepia field 

public CameraFilterPack_Color_Sepia CamFX_Colors_Sepia; 

void Update() 
{
	CamFX_Colors_Sepia._Fade =  1.0f;
}