Added a 'Draw Axis' function to lua GUI library

This commit is contained in:
ConHuevosGuey 2015-06-28 13:23:07 -05:00
parent 3a9bb13277
commit 229865c443
1 changed files with 12 additions and 0 deletions

View File

@ -378,6 +378,18 @@ namespace BizHawk.Client.EmuHawk
}
}
[LuaMethodAttributes(
"drawAxis",
"Draws an axis of the specified size at the coordinate pair.)"
)]
public void DrawAxis(int x, int y, int? size = null, Color? color = null)
{
DrawLine(x + (int) size, y, x - (int) size, y, color);
DrawLine(x, y + (int)size, x, y - (int)size, color);
}
[LuaMethodAttributes(
"drawPie",
"draws a Pie shape at the given coordinates and the given width and height"