Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


gameObject

The game object this component is attached to. A component is always attached to a game object.
Read time 1 minuteLast updated 5 days ago

Definition

  • Type: Property
  • Namespace: UnityEngine
  • Assembly: UnityEngine.CoreModule
public GameObject gameObject { get; }

Examples

using UnityEngine;public class Example : MonoBehaviour{ void Start() { print(gameObject.name); }}