mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-26 19:43:29 +00:00
46 lines
851 B
Lua
46 lines
851 B
Lua
numGui = 6
|
|
gui = {
|
|
{
|
|
pos = {x = 110, y = 80, z = 0},
|
|
size = {x = 300, y = 10},
|
|
guiType = GuiType.TEXTBOX
|
|
},
|
|
{
|
|
pos = {x = 110, y = 40, z = 0},
|
|
size = {x = 300, y = 10},
|
|
minValue = 0,
|
|
maxValue = 2,
|
|
guiType = GuiType.SLIDER,
|
|
numDependencies = 1,
|
|
dependencies = {
|
|
{id = 0}
|
|
}
|
|
},
|
|
{
|
|
pos = {x = 110, y = 110, z = 0},
|
|
guiType = GuiType.CHECKBOX
|
|
},
|
|
{
|
|
pos = {x = 100, y = 400, z = 0},
|
|
size = {x = 150, y = 20},
|
|
guiType = GuiType.BUTTON,
|
|
name = 'Ok',
|
|
buttonType = ButtonType.OK
|
|
},
|
|
{
|
|
pos = {x = 260, y = 400, z = 0},
|
|
size = {x = 150, y = 20},
|
|
guiType = GuiType.BUTTON,
|
|
name = 'Restore defaults',
|
|
buttonType = ButtonType.DEFAULTS
|
|
},
|
|
{
|
|
pos = {x = 420, y = 400, z = 0},
|
|
size = {x = 150, y = 20},
|
|
guiType = GuiType.BUTTON,
|
|
name = 'Back',
|
|
screen = 'options.lua',
|
|
buttonType = ButtonType.BACK
|
|
}
|
|
}
|