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