Version: 2020.1
언어: 한국어
public string ToString ();
public string ToString (string format);
public string ToString (string format, IFormatProvider formatProvider);

파라미터

format A numeric format string.
formatProvider An object that specifies culture-specific formatting.

설명

Returns a formatted string for this color.

using UnityEngine;

public class Example : MonoBehaviour { void Start() { Color32 color = Color.white; print(color.ToString("x")); } }