Files
PlanetFleet/Assets/Scripts/Gui/controlsTab.lua
T
2023-06-25 16:22:05 +03:00

33 lines
625 B
Lua

numGui = 4
gui = {
{
pos = {x = 110, y = 190},
size = {x = 360, y = 20},
guiType = GuiType.LISTBOX,
listboxType = ListboxType.CONTROLS,
numMaxDisplay = 5
},
{
pos = {x = 100, y = 400},
size = {x = 150, y = 20},
guiType = GuiType.BUTTON,
name = 'Ok',
buttonType = ButtonType.OK
},
{
pos = {x = 260, y = 400},
size = {x = 150, y = 20},
guiType = GuiType.BUTTON,
name = 'Restore defaults',
buttonType = ButtonType.DEFAULTS
},
{
pos = {x = 420, y = 400},
size = {x = 150, y = 20},
guiType = GuiType.BUTTON,
name = 'Back',
screen = 'options.lua',
buttonType = ButtonType.BACK
}
}