Versions with this page:
Versions without this page:
返回该颜色的整齐格式化的字符串。
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { public Color32 w = Color.white; void Example() { print(w.ToString("x")); } }