Component.renderer
var renderer: Renderer;
Renderer renderer;
renderer as Renderer
Description

The Renderer attached to this GameObject (null if there is none attached).

	renderer.material.color = Color.red;
using UnityEngine;
using System.Collections;

public class Example : MonoBehaviour {
    void Example() {
        renderer.material.color = Color.red;
    }
}
import UnityEngine
import System.Collections

public class Example(MonoBehaviour):

	def Example() as void:
		renderer.material.color = Color.red