This commit is contained in:
Evil Factory
2021-09-25 11:14:03 -03:00
parent d81684cd19
commit a058d0a1bc
3 changed files with 46 additions and 1 deletions
@@ -420,6 +420,20 @@ namespace Barotrauma
}
};
#endif
new GUIButton(new RectTransform(new Point(300, 30), Frame.RectTransform, Anchor.TopRight) { AbsoluteOffset = new Point(40, 230) },
"Remove Client-Side Lua", style: "GUIButtonLarge", color: GUI.Style.Red)
{
IgnoreLayoutGroups = true,
UserData = Tab.Empty,
ToolTip = "Remove Client-Side Lua.",
OnClicked = (tb, userdata) =>
{
return false;
}
};
var minButtonSize = new Point(120, 20);
var maxButtonSize = new Point(480, 80);