Version: 2017.2
public static Profiling.CustomSampler Create (string name);

参数

name 采样器的名称。

返回

CustomSampler CustomSampler 对象,如果存在具有相同名称的内置采样器,则返回 null

描述

创建一个用于分析代码的各个部分的新 CustomSampler。

Multiple calls with the same name parameter return different CustomSampler objects which refer to the same native representation.

Method throws ArgumentNullException when used with null string and ArgumentException when used with existing built-in Profiler label.

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

另请参阅:CustomSampler.BeginSampler.Get

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