Version: 2022.3

TypeCache.GetTypesWithAttribute

切换到手册
public static TypeCache.TypeCollection GetTypesWithAttribute ();
public static TypeCache.TypeCollection GetTypesWithAttribute (Type attrType);

参数

attrType 属性类型。

返回

TypeCollection 返回类型的集合。

描述

获取用 **T** 属性标记的类型的集合。

通过此方法可以快速访问从 Unity 域程序集加载并用特定属性标记的所有类型。结果中还包含用指定属性的上级标记的类型。

using UnityEditor;

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

**注意:**返回的 TypeCollection 为只读,具有线程安全性。