Version: 2021.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) { //... } } }

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

Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961