Color32.r
var r: byte;
byte r;
r as byte
Description

Red component of the color.

	var color : Color32 = Color.white;
	color.r = 0;
using UnityEngine;
using System.Collections;

public class Example : MonoBehaviour {
    public Color32 color = Color.white;
    void Example() {
        color.r = 0;
    }
}
import UnityEngine
import System.Collections

public class Example(MonoBehaviour):

	public color as Color32 = Color.white

	def Example() as void:
		color.r = 0