Version: 2022.3
言語: 日本語
public static TypeCache.FieldInfoCollection GetFieldsWithAttribute (Type attrType);
public static TypeCache.FieldInfoCollection GetFieldsWithAttribute ();

パラメーター

attrType Attribute type.

戻り値

FieldInfoCollection Returns a FieldInfo collection of fields marked with the T attribute.

説明

Retrieves a collection of fields marked with the T attribute.

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

using UnityEditor;
using System;
using System.Collections.Generic;

public class Example { class MyAttribute : Attribute {}

[MyAttribute] static int s_MyField;

static void ScanStaticFieldsMarkedWithMyAttribute() { var extractedFields = TypeCache.GetFieldsWithAttribute<MyAttribute>(); foreach (var fi in extractedFields) { if (!fi.IsStatic) continue; //... } } }

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