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


*without and with Camera Filter Pack Colors Color_YUV
Property |
Range |
Default |
---|---|---|
_Y | -1f to 1f | 0f |
_U | -1f to 1f | 0f |
_V | -1f to 1f | 0f |
Manipulate Colors Color_YUV by script
Example:
// Drag and Drop your Camera GameObject
// with the Colors Color_YUV component
// to your current script on the CamFX_Colors_Color_YUV field
public CameraFilterPack_Color_YUV CamFX_Colors_Color_YUV;
void Update()
{
CamFX_Colors_Color_YUV._Y = 0f;
}