Color.b 蓝色
var b : float
Description描述
Blue component of the color.
颜色中的蓝色组件。
三基色之一的蓝色通道。
C#
JavaScript
using UnityEngine;using System.Collections;public class example : MonoBehaviour {public Color color = Color.white;public void Awake() {color.b = 0;}}
var color : Color = Color.white;color.b = 0;