Version: 2023.2
언어: 한국어

TypeCache.GetTypesWithAttribute

매뉴얼로 전환
public static TypeCache.TypeCollection GetTypesWithAttribute ();
public static TypeCache.TypeCollection GetTypesWithAttribute (Type attrType);
public static TypeCache.TypeCollection GetTypesWithAttribute (string assemblyName);
public static TypeCache.TypeCollection GetTypesWithAttribute (Type attrType, string assemblyName);

파라미터

attrType Attribute type.
assemblyName Optional assembly name.

반환

TypeCollection Returns an unordered collection of types. If assemblyName is specified, returns only types defined in this assembly.

설명

Retrieves an unordered collection of types marked with the T attribute.

This method provides fast access to all classes loaded from a given assembly or all Unity domain assemblies and marked with a specific attribute. Types marked with ancestors of the specified attribute are also included in the result. The order of results is undefined.

using UnityEditor;

public class Example { static void ScanTypesWithAttribute() { var extractedTypes = TypeCache.GetTypesWithAttribute<CustomEditor>(); foreach (var m in extractedTypes) { //... } } }

Note: The returned TypeCollection is read-only and thread-safe. The order of types in the collection is undefined.