diff options
author | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2017-04-11 18:52:39 -0400 |
---|---|---|
committer | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2017-04-11 18:52:39 -0400 |
commit | 5e26aa5f91dafb16f62a43daa688a33b6216e0b6 (patch) | |
tree | 8d7b53dc3ca0f08494b81e68475de376b3573dd9 /common.lua | |
parent | a7c3908b6134b01e1447568d20e6801a373f1af8 (diff) |
cache on/off button image refs and commonly-used label for same
Diffstat (limited to 'common.lua')
-rw-r--r-- | common.lua | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -141,6 +141,13 @@ function fs_helpers.cycling_button(meta, base, meta_name, values) text = val end local field = "fs_helpers_cycling:"..new_value..":"..meta_name + + print("base"..dump(base)) + print("texture_name"..dump(texture_name)) + print("field"..dump(field)) + print("text"..dump(text)) + print("addopts"..dump(addopts)) + return base..";"..(texture_name and texture_name..";" or "")..field..";"..minetest.formspec_escape(text)..(addopts and ";"..addopts or "").."]" end |