Files
PlanetFleet/Assets/Scripts/Gui/mouseTab.lua

78 lines
1.5 KiB
Lua

gui = {
{
guiType = GuiType.TEXT,
name = '',
text = 'Mouse',
pos = {x = 20, y = 50, z = 0},
scale = .5,
font = 'batang.ttf',
fontFirstChar = 0,
fontLastChar = 256,
color = {x = 1, y = 1, z = 1, w = 1}
},
{
guiType = GuiType.TEXT,
name = '',
text = 'Sensitivity',
pos = {x = 20, y = 110, z = 0},
scale = .2,
font = 'batang.ttf',
fontFirstChar = 0,
fontLastChar = 256,
color = {x = 1, y = 1, z = 1, w = 1}
},
{
pos = {x = 470, y = 100, z = 0},
size = {x = 60, y = 30},
guiType = GuiType.TEXTBOX
},
{
pos = {x = 120, y = 100, z = 0},
size = {x = 300, y = 10},
minValue = 0,
maxValue = 2,
guiType = GuiType.SLIDER,
numDependencies = 1,
dependencies = {
{id = 1}
}
},
{
guiType = GuiType.TEXT,
name = '',
text = 'Reverse',
pos = {x = 20, y = 150, z = 0},
scale = .2,
font = 'batang.ttf',
fontFirstChar = 0,
fontLastChar = 256,
color = {x = 1, y = 1, z = 1, w = 1}
},
{
pos = {x = 110, y = 135, 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
}
}