mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-10 06:45:40 +00:00
22 lines
800 B
C#
22 lines
800 B
C#
using UnityEngine;
|
|
|
|
namespace X10D.Unity;
|
|
|
|
/// <summary>
|
|
/// Extension methods for <see cref="Component" />.
|
|
/// </summary>
|
|
public static class ComponentExtensions
|
|
{
|
|
/// <summary>
|
|
/// Returns an array of components of the specified type, excluding components that live on the object to which this
|
|
/// component is attached.
|
|
/// </summary>
|
|
/// <param name="component">The component whose child components to retrieve.</param>
|
|
/// <typeparam name="T">The type of the components to retrieve.</typeparam>
|
|
/// <returns>An array <typeparamref name="T" /> representing the child components.</returns>
|
|
public static T[] GetComponentsInChildrenOnly<T>(this Component component)
|
|
{
|
|
return component.gameObject.GetComponentsInChildrenOnly<T>();
|
|
}
|
|
}
|