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

ProfilerCategoryInfo

结构体 in UnityEditor.Profiling

建议更改

成功!

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

关闭

提交失败

由于某种原因,您的更改建议无法提交。请 <a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

描述

类别信息描述符结构体。

包含有关 Profiler 类别的完整信息,例如其名称、颜色、ID 和标志。与 FrameDataView.GetAllCategoriesFrameDataView.GetCategoryInfo 一起使用,以获取有关可用 Profiler 类别的信息。

using System;
using System.Collections.Generic;
using UnityEditor.Profiling;
using Unity.Profiling;

public class Example { public static void GetAllBuiltinProfilerCategories(FrameDataView frameDataView, List<ProfilerCategoryInfo> unityProfilerCategories) { unityProfilerCategories.Clear(); var infos = new List<ProfilerCategoryInfo>(); frameDataView.GetAllCategories(infos); foreach (var info in infos) { if (info.flags.HasFlag(ProfilerCategoryFlags.Builtin)) { unityProfilerCategories.Add(info); } } } }

属性

colorProfiler 类别的颜色,以 Color32 形式表示。
flags用于显示类别是用户定义的还是内置于 Unity 的标志。
idUnity 用于跟踪类别的 ID。
nameUnity 用于类别的名称。