You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CrowdControl/Assets/3rd/Plugins/Smart-Inspector/Runtime/Fluent UITK/IFluentExtensions.cs

24 lines
756 B
C#

1 month ago
using UnityEngine.UIElements;
using VE = UnityEngine.UIElements.VisualElement;
namespace AV.UITK
{
public static class IFluentExtensions
{
// TODO: Move all FluentElement utils into IFluent extension methods
/*
public static T Style<T>(this IFluent<T> e, params Styles[] styles) where T : VE
{
foreach (var style in styles)
FluentUITK.DefineStyle(e.x, style);
return e.x;
}
public static float Shrink<T>(this IFluent<T> e) where T : VE => e.x.resolvedStyle.flexShrink;
public static T Shrink<T>(this IFluent<T> e, float flexShrink) where T : VE
{
e.x.style.flexShrink = flexShrink; return e.x;
}
*/
}
}