This version of Unity is unsupported.

TypeCache.GetTypesWithAttribute

public static TypeCache.TypeCollection GetTypesWithAttribute();
public static TypeCache.TypeCollection GetTypesWithAttribute(Type attrType);

Parameters

attrTypeAttribute type.

Returns

TypeCollection Returns a collection of types.

Description

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.

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.