Returns a nicely formatted string of this color.
#pragma strict function Start() { var 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")); }
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")); } }
Did you find this page useful? Please give it a rating: