Divergent/mods/Hide Tooltip/gamedata/scripts/zzzz_hide_tooltip_mcm.script

21 lines
644 B
Plaintext
Raw Normal View History

2024-03-17 20:18:03 -04:00
local defaults = {
["key_hide"] = DIK_keys.DIK_LMENU,
["key_mode"] = true,
}
function get_config(key)
if ui_mcm then
return ui_mcm.get("hide_tooltip/" .. key) else return defaults[key]
end
end
function on_mcm_load()
op = { id = "hide_tooltip",sh = true ,gr = {
-- LuaFormatter off
{id = "title", type = "slide", link = "ui_options_slider_player", text = "ui_mcm_menu_hide_tooltip", size = {512, 50}, spacing = 20},
{id = "key_hide", type = "key_bind", val = 2, def = DIK_keys.DIK_LMENU},
{id = "key_mode", type = "check", val = 1, def = true}
-- LuaFormatter on
}
}
return op
end