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

32 lines
323 B
C#
Raw 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,
Margin,
MarginLeft,
MarginRight,
MarginTop,
MarginBottom,
PivotX,
PivotY,
Rotation,
Scale,
ScaleX,
ScaleY
}
}