32 lines
323 B
C#
32 lines
323 B
C#
|
|
|
||
|
|
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
|
||
|
|
}
|
||
|
|
}
|