Details
Add Colors HSV effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > Colors > HSV
*without and with Camera Filter Pack Colors HSV
Property |
Range |
Default |
---|---|---|
_HueShift | 0 to 360 | 180f |
_Saturation | -32 to 32 | 1f |
_ValueBrightness | -32 to 32 | 1f |
Manipulate Colors HSV by script
Example:
// Drag and Drop your Camera GameObject
// with the Colors HSV component
// to your current script on the CamFX_Colors_HSV field
public CameraFilterPack_Colors_HSV CamFX_Colors_HSV;
void Update()
{
CamFX_Colors_HSV._HueShift = 180f;
}