Version: 2022.3
言語: 日本語
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.