Version: 2022.3
언어: 한국어

TypeCache.GetMethodsWithAttribute

매뉴얼로 전환
public static TypeCache.MethodCollection GetMethodsWithAttribute ();
public static TypeCache.MethodCollection GetMethodsWithAttribute (Type attrType);

파라미터

attrType Attribute type.

반환

MethodCollection Returns a MethodInfo collection of methods marked with the T attribute.

설명

Retrieves a collection of methods marked with the T attribute.

This method provides fast access to all methods loaded from Unity domain assemblies and marked with a specific attribute. Methods marked with ancestors of the specified attribute are also included in the result.

using UnityEditor;
using System.Collections.Generic;

public class Example { static void ScanInitializeOnLoadMethods() { var extractedMethods = TypeCache.GetMethodsWithAttribute<InitializeOnLoadMethodAttribute>(); foreach (var m in extractedMethods) { if (m.IsPrivate) continue; //... }

for (int i = 0; i < extractedMethods.Count; ++i) { if (extractedMethods[i].IsPublic) continue; //... } } }

Note: The returned MethodCollection is read-only and thread-safe.