包含此页的版本:
不含此页的版本:
返回该颜色的整齐格式化的字符串。
using UnityEngine;public class Example : MonoBehaviour { void Start() { Color32 color = Color.white; print(color.ToString("x")); } }