rj-action-library/Runtime/UI/Styling/UIStyleProperty.cs

46 lines
518 B
C#

using Godot;
using Rokojori;
namespace Rokojori
{
public enum UIStyleNumberProperty
{
Left,
Right,
Bottom,
Top,
Width,
Height,
ElementSpacing,
LineSpacing,
Margin,
MarginLeft,
MarginRight,
MarginTop,
MarginBottom,
PivotX,
PivotY,
Rotation,
Scale,
ScaleX,
ScaleY,
FontSize,
FontOutlineSize,
FontShadowSize
}
public enum UIStyleColorProperty
{
FontColor,
FontOutlineColor,
FontShadowColor
}
}