sokoban.love/0072-settings_button

11 lines
379 B
Plaintext
Raw Normal View History

2023-11-26 17:49:54 +00:00
settings_button = function(x)
2023-11-26 17:53:09 +00:00
return right_justified_button('settings', x, Menu_top+5,
2023-11-26 07:03:20 +00:00
function()
Show_settings = not Show_settings
2023-11-25 17:10:05 +00:00
if Show_settings then Show_overflow = false end
if not Show_settings then
-- On mobile devices, we can't depend on on.save_settings() triggering on quit
love.filesystem.write('config', json.encode(settings()))
end
2023-11-26 07:03:20 +00:00
end)
2023-11-21 06:23:09 +00:00
end