Firstborn/Library/PackageCache/com.unity.inputsystem@1.5.1/InputSystem/Editor/Internal/TreeViewHelpers.cs
Schaken-Mods 9092858a58 updated to the latest editor
I updated everything to the latest Unity Editor. Also realized I had the wrong shaders on my hairs, those are fixed and the hairs look MUCH better!
2023-05-07 17:43:11 -05:00

52 lines
1.4 KiB
C#

#if UNITY_EDITOR
using System;
using UnityEditor.IMGUI.Controls;
namespace UnityEngine.InputSystem.Editor
{
/// <summary>
/// Extension methods for working with tree views.
/// </summary>
/// <seealso cref="TreeView"/>
internal static class TreeViewHelpers
{
public static TItem TryFindItemInHierarchy<TItem>(this TreeViewItem item)
where TItem : TreeViewItem
{
while (item != null)
{
if (item is TItem result)
return result;
item = item.parent;
}
return null;
}
public static bool IsParentOf(this TreeViewItem parent, TreeViewItem child)
{
if (parent == null)
throw new ArgumentNullException(nameof(parent));
if (child == null)
throw new ArgumentNullException(nameof(child));
do
{
child = child.parent;
}
while (child != null && child != parent);
return child != null;
}
public static void ExpandChildren(this TreeView treeView, TreeViewItem item)
{
if (!item.hasChildren)
return;
foreach (var child in item.children)
treeView.SetExpanded(child.id, true);
}
}
}
#endif // UNITY_EDITOR