using UnityEngine; namespace BitStrap.Examples { public class GameObjectExtensionsExample : MonoBehaviour { [Button] public void GetComponentInParentIncludingInactive() { base.transform.parent.gameObject.SetActive(false); Debug.LogFormat("Found component '{0}'", base.gameObject.GetComponentInParent(true)); } } }