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

CustomSampler.Begin

建议一个更改

成功!

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

关闭

提交失败

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

关闭

取消

声明

public void Begin();

声明

public void Begin(Object targetObject);

说明

使用此 CustomSampler 实例定义的自定义标签对一段代码进行分析。

这将显示在 Profiler 层级结构中。

using UnityEngine;
using UnityEngine.Profiling;

public class ExampleClass : MonoBehaviour { CustomSampler sampler; void Start() { sampler = CustomSampler.Create("MyCustomSampler"); }

void Update() { sampler.Begin(); // do something that takes a lot of time sampler.End(); } }

使用 ConditionalAttribute 条件编译 Profiler.BeginSample。因此在非开发版本中部署时,它将不会产生开销。

其他资源:CustomSampler.EndCustomSampler.CreateProfilerCPU