var b : float
Description
Blue component of the color.
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