SCED/src/playercards/customizable/FriendsinLowPlacesUpgradeSheet.ttslua

83 lines
1.3 KiB
Plaintext
Raw Normal View History

2022-11-10 23:59:55 -08:00
-- Customizable Cards: Friends in Low Places
-- Color information for buttons and input boxes
boxSize = 36
inputFontsize = 50
-- static values
x_1 = -0.935
x_offset = 0.0685
-- z-values (lines on the sheet)
posZ = {
-0.725,
-0.44,
-0.05,
0.25,
0.545,
0.75,
0.95
}
-- box setup (amount of boxes per line and amount of marked boxes in that line)
existingBoxes = { 1, 2, 2, 2, 2, 3, 3 }
inputBoxes = { 1, 1 }
inputWidth = { 640, 290 }
inputPos = { { 0.275, 0.25, -0.91 }, { 0.6295, 0.25, -0.44 } }
customizations = {
[1] = {
textField = {
position = { 0.275, 0.25, -0.91 },
width = 640
}
},
[2] = {
checkboxes = {
posZ = -0.725,
count = 1,
}
},
[3] = {
checkboxes = {
posZ = -0.44,
count = 2,
}
},
[4] = {
checkboxes = {
posZ = -0.05,
count = 2,
},
textField = {
position = { 0.6295, 0.25, -0.44 },
width = 290
}
},
[5] = {
checkboxes = {
posZ = 0.25,
count = 2,
}
},
[6] = {
checkboxes = {
posZ = 0.545,
count = 2,
},
},
[7] = {
checkboxes = {
posZ = 0.75,
count = 3,
}
},
[8] = {
checkboxes = {
posZ = 0.95,
count = 3,
}
},
}
require("playercards/customizable/UpgradeSheetLibrary")