Re-vamp multiple settings as buttons.

Minor logic clean up.
This commit is contained in:
aerinon
2023-04-06 11:22:12 -06:00
parent abb11558d8
commit 3c18dc6e3a
8 changed files with 85 additions and 57 deletions

View File

@@ -226,6 +226,7 @@
"randomizer.item.worldstate.open": "Open",
"randomizer.item.worldstate.inverted": "Inverted",
"randomizer.item.worldstate.retro": "Retro",
"randomizer.item.retro": "Enable Retro",
"randomizer.item.logiclevel": "Logic Level",
"randomizer.item.logiclevel.noglitches": "No Glitches",
@@ -320,7 +321,7 @@
"randomizer.item.potshuffle": "Pot Shuffle (Legacy)",
"randomizer.item.dropshuffle": "Shuffle Enemy Key Drops",
"randomizer.item.keydropshuffle": "Key Drop Shuffle (Legacy)",
"randomizer.item.keydropshuffle": "Enable Key Drop Shuffle (Legacy)",
"randomizer.item.take_any": "Take Any Caves",
"randomizer.item.take_any.none": "None",

View File

@@ -11,12 +11,8 @@
"options": [
"standard",
"open",
"inverted",
"retro"
],
"config": {
"command": "worldstate"
}
"inverted"
]
},
"logiclevel": {
"type": "selectbox",
@@ -65,6 +61,12 @@
}
},
"rightItemFrame": {
"retro": {
"type": "button",
"config": {
"command": "retro"
}
},
"sortingalgo": {
"type": "selectbox",
"default": "balanced",
@@ -140,20 +142,28 @@
"colorizepots": {
"type": "checkbox",
"config": {
"padx": [50,0]
"padx": [
50,
0
]
}
},
"potshuffle": {
"type": "checkbox",
"config": {
"padx": [50,0]
"padx": [
50,
0
]
}
},
"dropshuffle": {
"type": "checkbox"
},
}
},
"leftPoolFrame2": {
"keydropshuffle": {
"type": "checkbox",
"type": "button",
"config": {
"command": "keydropshuffle"
}