lua - add client.SetGameExtraPadding(left,top,right,bottom)
This commit is contained in:
parent
faf299faf8
commit
d0f56ac98d
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue