Details
Add ColorsAdjust FullColors effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > ColorsAdjust > FullColors
*without and with Camera Filter Pack ColorsAdjust FullColors
Property |
Range |
Default |
---|---|---|
Red_R | -200f to 200f | 100f |
Red_G | -200f to 200f | 0f |
Red_B | -200f to 200f | 0f |
Red_Constant | -200f to 200f | 0 |
Green_R | -200f to 200f | 0f |
Green_G | -200f to 200f | 100f |
Green_B | -200f to 200f | 0f |
Green_Constant | -200f to 200f | 0 |
Blue_R | -200f to 200f | 0f |
Blue_G | -200f to 200f | 0f |
Blue_B | -200f to 200f | 100f |
Blue_Constant | -200f to 200f | 0 |
Manipulate ColorsAdjust FullColors by script
Example:
// Drag and Drop your Camera GameObject
// with the ColorsAdjust FullColors component
// to your current script on the CamFX_ColorsAdjust_FullColors field
public CameraFilterPack_Colors_Adjust_FullColors CamFX_ColorsAdjust_FullColors;
void Update()
{
CamFX_ColorsAdjust_FullColors.Red_R = 100f;
}