Color.ToStringfunction ToString () : Stringfunction ToString (format : String) : StringDescriptionReturns a nicely formatted string of this color.
JavaScripts
print(Color.white);
using UnityEngine;
using System.Collections; public class example : MonoBehaviour { void Awake() { print(Color.white); } } import UnityEngine
import System.Collections class example(MonoBehaviour): def Awake(): print(Color.white) |
