You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 9, 2023. It is now read-only.
Currently the footer buttons (trash, sort, settings, home) are hard coded, and there is no API to add more buttons.
My use case is to add a "quick stack to nearby chests" button, which is easy to do with unified_inventory, but impossible with i3.
The API would be similar to adding tabs, something like this:
i3.new_button("button", {
description="Button",
image="button.png",
-- Called when the button is pressedaction=function(player, data)
localname=player:get_player_name()
minetest.chat_send_player(name, "You pressed the button!")
end,
})
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Currently the footer buttons (trash, sort, settings, home) are hard coded, and there is no API to add more buttons.
My use case is to add a "quick stack to nearby chests" button, which is easy to do with
unified_inventory
, but impossible withi3
.The API would be similar to adding tabs, something like this:
The text was updated successfully, but these errors were encountered: