Unity - Scripting API: Unity.Profiling.ProfilerRecorder.StartNew
Success!
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
Submission failed
For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
Parameters
| Parameter | Description |
|---|---|
| category | Profiler category. |
| statName | Profiler marker or counter name. |
| capacity | Maximum amount of samples to be collect. Must be greater than 0. |
| options | ProfilerRecorder options. |
Returns
ProfilerRecorder Returns new enabled recorder instance.
Description
Initialize a new instance of ProfilerRecorder and start data collection.
For a list of built-in Profiler markers available, see the User Manual documentation on Common Profiler markers.
Note: capacity paramether must be greater than 0, otherwise StartNew throws an exception.
Additional resources: ctor.
Parameters
| Parameter | Description |
|---|---|
| capacity | Maximum amount of samples to be collected. Must be greater than 0. |
| options | Profiler recorder options. |
| marker | Profiler marker instance. |
Returns
ProfilerRecorder Returns new enabled recorder instance.
Description
Initialize a new instance of ProfilerRecorder for ProfilerMarker and start data collection.