Version: 2022.3
언어: 한국어

ProfilerCounterDescriptor

struct in Unity.Profiling.Editor

매뉴얼로 전환

설명

Provides a descriptor for a Profiler counter.

using System;
using Unity.Profiling;
using Unity.Profiling.Editor;

[Serializable] [ProfilerModuleMetadata("Garbage Collection")] public class GarbageCollectionProfilerModule : ProfilerModule { static readonly ProfilerCounterDescriptor[] k_ChartCounters = new ProfilerCounterDescriptor[] { new ProfilerCounterDescriptor("GC Reserved Memory", ProfilerCategory.Memory), new ProfilerCounterDescriptor("GC Used Memory", ProfilerCategory.Memory), new ProfilerCounterDescriptor("GC Allocated In Frame", ProfilerCategory.Memory), };

public GarbageCollectionProfilerModule() : base(k_ChartCounters) {} }

변수

CategoryNameThe category name of the described Profiler counter.
NameThe name of the described Profiler counter.

생성자

ProfilerCounterDescriptorInitializes and returns an instance of ProfilerCounterDescriptor.