Description
The GetComponentsInParent
method retrieves all components of type T
from the current GameObject
and its ancestor GameObjects
. This method allows you to specify whether to include components that are disabled and whether to include the component on the current GameObject
itself.
Usage
To use the GetComponentsInParent
method, call it on a Component
instance, specifying the type of components you want to retrieve. You can also specify whether to include disabled components and whether to include the component on the current GameObject
itself.
Parameters:
includeDisabled
(bool
): If true
, the method will include components that are currently disabled.
includeSelf
(bool
): If true
, the method will include the component on the current GameObject
itself.
Example
// Example usage of GetComponentsInParent
public class ExampleComponent : Component
{
public void PrintParentComponents()
{
// Get all components of type ExampleComponent in parent GameObjects, including disabled ones
var components = GetComponentsInParent<ExampleComponent>(includeDisabled: true, includeSelf: true);
foreach (var component in components)
{
// Perform operations with each component
// For example, print the component's GameObject name
Log.Info(component.GameObject.Name);
}
}
}