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

FrameDataView.MarkerInfo.category

建议更改

成功!

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

关闭

提交失败

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

关闭

取消

public ushort category;

描述

标记类别。

用于获取标记类别。

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

public class Example { public static void GetAllRenderMarkers(FrameDataView frameData, List<int> renderMarkerIds) { renderMarkerIds.Clear(); var markers = new List<FrameDataView.MarkerInfo>(); frameData.GetMarkers(markers); foreach (var marker in markers) { if (marker.category == ProfilerUnsafeUtility.CategoryRender) renderMarkerIds.Add(marker.id); } } }

其他资源: ProfilerUnsafeUtility.