Legacy Documentation: Version 5.3
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Color.HSVToRGB

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public static function HSVToRGB(H: float, S: float, V: float): Color;
public static Color HSVToRGB(float H, float S, float V);
public static function HSVToRGB(H: float, S: float, V: float, hdr: bool): Color;
public static Color HSVToRGB(float H, float S, float V, bool hdr);

Parameters

H Hue [0..1].
S Saturation [0..1].
V Value [0..1].
hdr Output HDR colours. If true, the returned colour will not be clamped to [0..1].

Returns

Color An opaque colour with HSV matching the input.

Description

Creates an RGB colour from HSV input.