lua - add client.SetGameExtraPadding(left,top,right,bottom)

This commit is contained in:
zeromus 2015-08-09 10:50:24 -05:00
parent faf299faf8
commit d0f56ac98d
1 changed files with 10 additions and 0 deletions

View File

@ -151,6 +151,16 @@ namespace BizHawk.Client.EmuHawk
return Global.Config.TargetZoomFactor;
}
[LuaMethodAttributes(
"SetGameExtraPadding",
"Sets the extra padding added to the 'emu' surface so that you can draw HUD elements in predictable placements"
)]
public static void SetGameExtraPadding(int left, int top, int right, int bottom)
{
GlobalWin.DisplayManager.GameExtraPadding = new System.Windows.Forms.Padding(left, top, right, bottom);
GlobalWin.MainForm.FrameBufferResized();
}
[LuaMethodAttributes(
"ispaused",
"Returns true if emulator is paused, otherwise, false"