Color.bvar b : floatDescriptionBlue component of the color.
JavaScripts
using UnityEngine;
using System.Collections; public class example : MonoBehaviour { public Color color = Color.white; void Awake() { color.b = 0; } } import UnityEngine
import System.Collections class example(MonoBehaviour): public color as Color = Color.white def Awake(): color.b = 0 |
