Color.gvar g : floatDescriptionGreen component of the color.
JavaScripts
using UnityEngine;
using System.Collections; public class example : MonoBehaviour { public Color color = Color.white; void Awake() { color.g = 0; } } import UnityEngine
import System.Collections class example(MonoBehaviour): public color as Color = Color.white def Awake(): color.g = 0 |
