PICO-8 Wiki
Advertisement
menuitem( index, [label,] [callback] )
Adds a custom item to the Pico-8 menu.
index
The item index, a number between 1 and 5.

label
The label text of the menu item to add or change.

callback
A Lua function to call when the user selects this menu item.

Examples

menuitem(1, "restart puzzle", function() reset_puzzle() sfx(10) end)

function display_hints()
  hint_shown = level_id
end
menuitem(2, "show hints", display_hints)

See also

Advertisement