attrType | Attribute type. |
TypeCollection Returns a collection of types.
Retrieves a collection of types marked with the T attribute.
This method provides fast access to all types loaded from Unity domain assemblies and marked with a specific attribute. Types marked with ancestors of the specified attribute are also included in the result.
using UnityEditor;
public class Example { static void ScanTypesWithAttribute() { var extractedTypes = TypeCache.GetTypesWithAttribute<CustomEditor>(); foreach (var m in extractedTypes) { //... } } }
Note: The returned MethodCollection is read-only and thread-safe.