ComponentList Components { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

The Components property provides access to the list of components attached to the same GameObject as this component. This allows you to interact with other components on the same GameObject without needing to directly reference them by type or name.

Usage

Use the Components property to iterate over or access specific components attached to the same GameObject. This is useful for managing component interactions and dependencies within a GameObject.

Example

// Example of accessing components on the same GameObject
public class ExampleComponent : Component
{
    public void PrintComponentNames()
    {
        foreach (var component in Components)
        {
            Log.Info($"Component: {component.GetType().Name}");
        }
    }
}