Manual     Reference     Scripting  
  
Scripting > Runtime Classes > Color32   
  • Menu
  • Overview
  • Runtime Classes
  • Attributes
  • Enumerations
  • Editor Classes
  • Attributes
  • Enumerations
  • History
  • Index
  • Color32
  • All Members
  • Variables
  • a
  • b
  • g
  • r
  • Constructors
  • Color32
  • Functions
  • ToString
  • Class Functions
  • Lerp
  • operator Color
  • operator Color32

Color32.r  

var r : byte

Description

Red component of the color.

JavaScript
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

class example(MonoBehaviour):

public color as Color32 = Color.white

def Example():
color.r = 0