using UnityEngine; using System.Collections; using System.Collections.Generic; using System.Linq; public static class EditorExtensions { /// /// FindDerivedTypesFromAssembly allows a user to query all of types derived from a /// particular Type at runtime. /// Example usage: /// foreach (System.Type st in EditorUtility.FindDerivedTypesFromAssembly(System.Reflection.Assembly.GetAssembly(typeof(BaseTimelineEvent)), typeof(BaseTimelineEvent), true)) /// /// The assembly to search in /// The base Type from which all returned Types derive /// If true, only class Types will be returned /// public static System.Type[] FindDerivedTypesFromAssembly(this System.Reflection.Assembly assembly, System.Type baseType, bool classOnly = true) { if (assembly == null) Debug.LogError("Assembly must be defined"); if (baseType == null) Debug.LogError("Base type must be defined"); // Iterate through all available types in the assembly var types = assembly.GetTypes().Where(type => { if (classOnly && !type.IsClass) return false; if (baseType.IsInterface) { var it = type.GetInterface(baseType.FullName); if (it != null) return true; } else if (type.IsSubclassOf(baseType)) { return true; } return false; } ); return types.ToArray(); } /// /// A convenient method for calling the above. /// Example usage: /// List subTypes = EditorUtility.FindDerivedTypes(typeof(BaseTimelineEvent)).ToList(); /// /// /// /// public static System.Type[] FindDerivedTypes(System.Type baseType, bool classOnly = true) { return FindDerivedTypesFromAssembly(System.Reflection.Assembly.GetAssembly(baseType), baseType, classOnly); } }