释放 Profiling 线程使用的内部资源。
Profiler 分配内存来存储有关线程的信息。要释放该内存,请使用EndThreadProfiling。调用此方法后,Profiler 将停止收集所述线程上的任何数据。
注意: 对 Unity 内部线程(例如主线程、渲染线程或作业系统线程)调用此方法没有任何效果。
using UnityEngine; using UnityEngine.Profiling; using System.Threading;
public class ExampleClass : MonoBehaviour { CustomSampler sampler; void Start() { sampler = CustomSampler.Create("MyCustomSampler"); var thread = new Thread(MyThreadFunc) { IsBackground = true }; thread.Start(); }
void MyThreadFunc() { Profiler.BeginThreadProfiling("My threads", "My thread 1"); // Now samples will show up in the profiler timeline view for (int i = 0; i < 10; i++) { sampler.Begin(); // ... sampler.End(); }
// Unregister the thread before exit Profiler.EndThreadProfiling(); } }