figura-skin/scripts/wheels/toggles.lua
reidlab d1809b35ee
init (again)
i accidentally [doxxed myself](https://github.com/JannisX11/blockbench/issues/1322), thanks blockbench!
2025-03-15 15:35:15 -07:00

14 lines
316 B
Lua

local toggles = action_wheel:newPage()
function pings.toggleArmor(state)
vanilla_model.ARMOR:setVisible(state)
end
local toggle_armor = toggles:newAction()
:setToggled(false)
:setOnToggle(pings.toggleArmor)
:title("toggle armor")
:item("red_wool")
:toggleItem("green_wool")
return toggles