Red component of the color.
var color : Color32 = Color.white; color.r = 0;
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { public Color32 color = Color.white; void Example() { color.r = 0; } }
Did you find this page useful? Please give it a rating: