GetItemMergedSamplesEntityId(int, List<EntityId>)
Retrieves the EntityId of the merged samples corresponding to a hierarchy item.
Read time 1 minuteLast updated 12 days ago
Definition
- Type: Method
- Namespace: UnityEditor.Profiling
- Assembly: UnityEditor.CoreModule
public void GetItemMergedSamplesEntityId(int id, List<EntityId> outEntityIds)
Parameters
Hierarchy item identifier.
List filled with EntityId values of merged samples as a result of a method call.
Remarks
When MergeSamplesWithTheSameName is active, multiple samples with the same name at the same hierarchy level are merged together and are represented by a single item. Respectively HierarchyFrameDataView.GetItemColumnData in this case represents an aggregated value.
GetItemMergedSamplesColumnData allows to obtain values of individual samples in merged hierarchy.
The result is written to outEntityIds list which is resized if necessary.
Additional Resources: HierarchyFrameDataView.GetItemEntityId.