Show/hide footer_button with access() function
Now those with this function defined can be hidden.
This commit is contained in:
parent
4f0b41b61f
commit
83d9074e06
|
@ -694,13 +694,17 @@ end
|
|||
-- Get the inventory-footer’s formspec.
|
||||
local function get_footer(fs, data, player)
|
||||
-- Render individual footer buttons.
|
||||
local i = 1
|
||||
local starting_x = 3.43 - (.3 * (#i4.footer_buttons - 4)) -- Center the icons
|
||||
for i, btn in ipairs(i4.footer_buttons) do
|
||||
for _, btn in ipairs(i4.footer_buttons) do
|
||||
if not btn.access or btn.access(player, data) then
|
||||
local btn_name = "footer_" .. btn.name
|
||||
fs("style[%s;fgimg=%s;fgimg_hovered=%s^\\[brighten^\\[colorize:#fff:100;content_offset=0]",
|
||||
btn_name, btn.image, btn.image)
|
||||
image_button(i + starting_x - (i * 0.4), 11.43, 0.35, 0.35, "", btn_name, "")
|
||||
fs("tooltip[%s;%s;#32333899;#fff]", btn_name, btn.description)
|
||||
i++
|
||||
end
|
||||
end
|
||||
|
||||
-- Render the current-selected button’s formspec, if one is active.
|
||||
|
|
Ŝarĝante…
Reference in New Issue