Rasagar/Library/PackageCache/com.unity.test-framework.performance/Documentation~/measure-custom.md
2024-08-26 23:07:20 +03:00

537 B

Measure.Custom()

When you want to record samples outside of frame time, method time, or profiler markers, use a custom measurement. It can be any value.

Example: Use a custom measurement to capture total allocated memory

[Test, Performance]
public void Test()
{
    SampleGroup sampleGroup = new SampleGroup("TotalAllocatedMemory", SampleUnit.Megabyte, false);
    var allocatedMemory = UnityEngine.Profiling.Profiler.GetTotalAllocatedMemoryLong() / 1048576f;
    Measure.Custom(sampleGroup, allocatedMemory);
}