Color32.r 红色
var r : byte
Description描述
Red component of the color.
颜色中的红色组件。
using UnityEngine;using System.Collections;public class example : MonoBehaviour {public Color32 color = Color.white;void Awake() {color.r = 0;}}
var color : Color32 = Color.white;color.r = 0;
,