The color of the GUI texture.
// change the color of the texture to greenguiTexture.color = Color.green;
using UnityEngine;using System.Collections;public class example : MonoBehaviour { void Example() { guiTexture.color = Color.green; }}
import UnityEngineimport System.Collectionsclass example(MonoBehaviour): def Example(): guiTexture.color = Color.green