lua: gui.defaultTextBackground()
This commit is contained in:
parent
dfc139376a
commit
23b3784123
|
@ -164,7 +164,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
[LuaMethodAttributes(
|
||||
"defaultForeground",
|
||||
"Sets the default foreground color to use when using drawing methods, white by default"
|
||||
"Sets the default foreground color to use in drawing methods, white by default"
|
||||
)]
|
||||
public void SetDefaultForegroundColor(Color color)
|
||||
{
|
||||
|
@ -173,13 +173,22 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
[LuaMethodAttributes(
|
||||
"defaultBackground",
|
||||
"Sets the default background color to use when using drawing methods, transparent by default"
|
||||
"Sets the default background color to use in drawing methods, transparent by default"
|
||||
)]
|
||||
public void SetDefaultBackgroundColor(Color color)
|
||||
{
|
||||
DefaultBackground = color;
|
||||
}
|
||||
|
||||
[LuaMethodAttributes(
|
||||
"defaultTextBackground",
|
||||
"Sets the default backgroiund color to use in text drawing methods, half-transparent black by default"
|
||||
)]
|
||||
public void SetDefaultTextBackground(Color color)
|
||||
{
|
||||
DefaultTextBackground = color;
|
||||
}
|
||||
|
||||
[LuaMethodAttributes(
|
||||
"drawBezier",
|
||||
"Draws a Bezier curve using the table of coordinates provided in the given color"
|
||||
|
|
Loading…
Reference in New Issue