版本:Unity 6 (6000.0)
语言英语
  • C#

Profiler.EndThreadProfiling

提出修改建议

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交,但我们确实会阅读用户提出的每项修改建议,并在适用情况下进行更新。

关闭

提交失败

由于某些原因,无法提交您提出的修改建议。请在几分钟后<a>重试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

声明

public static void EndThreadProfiling();

说明

释放 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(); } }