using UnityEditor; using UnityEngine; using UnityObject = UnityEngine.Object; namespace litefeel.Finder.Editor { class FindMissingPropertyOnAllAssets : FindWindowBase { protected override bool InGameObjectAndChildren(GameObject prefab) { return UnityUtil.AnyOneComponentAndChildren(FindUtil.CheckMissingProp, prefab.transform); } } }