Legacy Documentation: Version 2018.1 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

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

Color.RGBToHSV

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

Submission failed

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

Close

Cancel

public static method RGBToHSV(rgbColor: Color, out H: float, out S: float, out V: float): void;
public static void RGBToHSV(Color rgbColor, out float H, out float S, out float V);

Parameters

rgbColorAn input color.
HOutput variable for hue.
SOutput variable for saturation.
VOutput variable for value.

Description

Calculates the hue, saturation and value of an RGB input color.

The H, S, and V are output in the range 0.0 to 1.0.

#pragma strict
// Display an RGBA as an HSV
public class ExampleScript extends MonoBehaviour {
	function Start() {
		var HSV: float;
		Color.RGBToHSV(new Color(0.9f, 0.7f, 0.1f, 1.0F), H, S, V);
		Debug.Log("H: " + H + " S: " + S + " V: " + V);
	}
}
using UnityEngine;

// Display an RGBA as an HSV

public class ExampleScript : MonoBehaviour { void Start() { float H, S, V;

Color.RGBToHSV(new Color(0.9f, 0.7f, 0.1f, 1.0F), out H, out S, out V); Debug.Log("H: " + H + " S: " + S + " V: " + V); } }
对文档有任何疑问,请移步至开发者社区提问,我们将尽快为您解答