HSVToRGB(float, float, float, bool)
Convert a set of HSV values to an RGB Color.
Read time 1 minuteLast updated 9 days ago
Definition
- Type: Method
- Namespace: UnityEditor
- Assembly: UnityEditor.CoreModule
public static Color HSVToRGB(float H, float S, float V, bool hdr)
Parameters
Returns
Type | Description |
|---|---|
| Color | The RGB color calculated from the HSV values passed into the function. The alpha value of the color will be 1. |
Remarks
All values are in the range 0 - 1.
Additional Resources: RGBToHSV.