Version: 2020.2
언어: 한국어
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 of this color.

using UnityEngine;

public class ExampleClass : MonoBehaviour { void Start() { Color color = Color.magenta; print(color.ToString());

// use 5 digits for each number color = new Color(Random.value, Random.value, Random.value, 1.0f); print(color.ToString("F5")); } }