Added New Mods and Profiles Folders

This is a complete rebuild of the modpack, with all new mods and updates for 1.5.3 of Anomaly.
This commit is contained in:
2025-01-14 05:07:53 -05:00
parent 85c665b107
commit 376b4b9689
21217 changed files with 546254 additions and 0 deletions
@@ -0,0 +1,24 @@
-- If you don't use MCM, change your defaults from here
local defaults = {
["keybind"] = DIK_keys.DIK_EQUALS
}
function get_config(key)
if ui_mcm then
return ui_mcm.get("mark_switch/" .. key)
else
return defaults[key]
end
end
function on_mcm_load()
op = {
id = "mark_switch",
sh = true,
gr = {
{id = "title", type = "slide", link = "ui_options_slider_player", text = "ui_mcm_mark_switch_title", size = {512, 50}, spacing = 20},
{id = "keybind", type = "key_bind", val = 2, def = DIK_keys.DIK_EQUALS},
}
}
return op
end