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

51 lines
635 B
C#
Raw Permalink Normal View History

2024-08-09 13:52:49 +00:00
using Godot;
using Rokojori;
namespace Rokojori
{
public enum UIStyleNumberProperty
{
Left,
Right,
Bottom,
Top,
Width,
Height,
2024-08-11 17:38:06 +00:00
ElementSpacing,
LineSpacing,
2024-09-14 06:41:52 +00:00
HorizontalAlignment,
VerticalAlignment,
VerticalPlacement,
2024-08-11 17:38:06 +00:00
2024-08-09 13:52:49 +00:00
Margin,
MarginLeft,
MarginRight,
MarginTop,
MarginBottom,
PivotX,
PivotY,
Rotation,
Scale,
ScaleX,
2024-08-11 17:38:06 +00:00
ScaleY,
FontSize,
FontOutlineSize,
2024-09-14 06:41:52 +00:00
FontShadowSize,
FontShadowOffsetX,
FontShadowOffsetY
2024-08-11 17:38:06 +00:00
}
public enum UIStyleColorProperty
{
FontColor,
FontOutlineColor,
FontShadowColor
2024-08-09 13:52:49 +00:00
}
}