Version: 2022.3
언어: 한국어

TypeCache.GetTypesWithAttribute

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

파라미터

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 TypeCollection is read-only and thread-safe.