Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


ProfilerCounterDescriptor

Provides a descriptor for a Profiler counter.
Read time 1 minuteLast updated 8 days ago

Definition

public readonly struct ProfilerCounterDescriptor

Remarks

using System;using Unity.Profiling;using Unity.Profiling.Editor;[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) {}}

Constructors

Properties

Property

Description

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

Methods

Method

Description

ToStringReturns a string representation of the ProfilerCounterDescriptor.