Created unity project

This commit is contained in:
2024-12-07 20:55:50 +01:00
parent 539250d964
commit 54fe327198
13758 changed files with 865324 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
using UnityEngine.UIElements;
namespace Unity.PlasticSCM.Editor
{
internal static class QueryVisualElementsExtensions
{
/// <summary>
/// Shows the element regardless if it is has been hidden or collapsed.
/// </summary>
/// <param name="query">The element query</param>
/// <typeparam name="T">The element type</typeparam>
internal static void Show<T>(this UQueryBuilder<T> query)
where T: VisualElement
{
((T)query).Show();
}
/// <summary>
/// Removes the element from the layout, freeing its space and position.
/// </summary>
/// <param name="query">The element query</param>
/// <typeparam name="T">The element type</typeparam>
internal static void Collapse<T>(this UQueryBuilder<T> query)
where T: VisualElement
{
((T)query).Collapse();
}
/// <summary>
/// Hides the element while preserving its space and position in the layout.
/// </summary>
/// <param name="query">The element query</param>
/// <typeparam name="T">The element type</typeparam>
internal static void Hide<T>(this UQueryBuilder<T> query)
where T: VisualElement
{
((T)query).Collapse();
}
}
}