Select your preferred scripting language. All code snippets will be displayed in this language.
The Renderer attached to this GameObject (null if there is none attached).
renderer.material.color = Color.red;
using UnityEngine; using System.Collections; public class ExampleClass : MonoBehaviour { void Example() { renderer.material.color = Color.red; } }
import UnityEngine import System.Collections public class ExampleClass(MonoBehaviour): def Example() as void: renderer.material.color = Color.red