public static Unity.Profiling.ProfilerRecorder StartNew (Unity.Profiling.ProfilerCategory category, string statName, int capacity, Unity.Profiling.ProfilerRecorderOptions options);

Parameters

categoryProfiler category.
statNameProfiler marker or counter name.
capacityMaximum amount of samples to be collected.
optionsProfilerRecorder options.

Returns

ProfilerRecorder Returns new enabled recorder instance.

Description

Initialize a new instance of ProfilerRecorder and start data collection.

using Unity.Profiling;
using UnityEngine;

public class ExampleScript : MonoBehaviour { ProfilerRecorder systemMemoryRecorder; ProfilerRecorder gcMemoryRecorder; ProfilerRecorder mainThreadTimeRecorder;

void OnEnable() { systemMemoryRecorder = ProfilerRecorder.StartNew(ProfilerCategory.Memory, "System Used Memory"); gcMemoryRecorder = ProfilerRecorder.StartNew(ProfilerCategory.Memory, "GC Reserved Memory"); mainThreadTimeRecorder = ProfilerRecorder.StartNew(ProfilerCategory.Internal, "Main Thread", 15); }

void OnDisable() { systemMemoryRecorder.Dispose(); gcMemoryRecorder.Dispose(); mainThreadTimeRecorder.Dispose(); } }

See Also: ctor.


Parameters

capacityMaximum amount of samples to be collected.
optionsProfiler recorder options.
markerProfiler marker instance.

Returns

ProfilerRecorder Returns new enabled recorder instance.

Description

Initialize a new instance of ProfilerRecorder for ProfilerMarker and start data collection.

See Also:: ProfilerMarker.

Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961