GameObject GameObject { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

The GameObject property of a Component provides access to the GameObject that the component is attached to. This is a fundamental property that allows components to interact with their parent GameObject and other components attached to it.

Usage

Use the GameObject property to access the parent GameObject of a component. This can be useful for retrieving other components, manipulating the GameObject's transform, or accessing its properties and methods.

Example

// Example of accessing the GameObject property
public class ExampleComponent : Component
{
    public void PrintGameObjectName()
    {
        // Access the GameObject this component is attached to
        GameObject parentObject = this.GameObject;
        
        // Print the name of the GameObject
        Log.Info($"This component is attached to: {parentObject.Name}");
    }
}