10 lines
160 B
C#
10 lines
160 B
C#
using UnityEngine;
|
|
|
|
public static class GameObjectExtensions
|
|
{
|
|
public static bool GetActive(this GameObject target)
|
|
{
|
|
return target.activeInHierarchy;
|
|
}
|
|
}
|