namespace Zinnia.Rule { using UnityEngine; /// /// Determines whether a is active in the scene hierarchy. /// public class ActiveInHierarchyRule : GameObjectRule { /// protected override bool Accepts(GameObject targetGameObject) { return targetGameObject.activeInHierarchy; } } }