Version: 2022.3
LanguageEnglish
  • C#
Removed

GameObject.renderer

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Switch to Manual
Obsolete Property renderer has been deprecated. Use GetComponent<Renderer>() instead. public Component renderer;

Description

The Renderer attached to this GameObject (Read Only). (Null if there is none attached).

GameObject.renderer is obsolete. Instead you should use GetComponent<Renderer>() to access the Renderer component of a GameObject.

Access the Renderer component of a GameObject to read or manipulate the GameObject’s Material, visibility, shadow reception and perform various other useful effects to the GameObject’s appearance.

using UnityEngine;

public class Example : MonoBehaviour { Renderer m_ObjectRenderer;

void Start() { //Fetch the GameObject's Renderer component m_ObjectRenderer = GetComponent<Renderer>(); //Change the GameObject's Material Color to red m_ObjectRenderer.material.color = Color.red; } }