Color.green Manual     Reference     Scripting  
Scripting > Runtime Classes > Color
Color.green

static var green : Color

Description

Solid green. RGBA is (0, 1, 0, 1).

JavaScript
// Assign a green color to this transform's material
transform.renderer.material.color = Color.green;

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
void Example() {
transform.renderer.material.color = Color.green;
}
}

import UnityEngine
import System.Collections

class example(MonoBehaviour):

def Example():
transform.renderer.material.color = Color.green