Version: 2019.3
public string ToString ();
public string ToString (string format);

説明

この色の情報を表す整形された文字列を返します。

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")); } }