Fantasy computer for making, playing and sharing tiny games. · By Nesbox
how would i go about sensing if a button is not pressed at all?
In Lua it's pretty simple -- just the 'not' keyword.
if not btn(n) then --True if btn n is NOT pressed end
Whether to find out whether at least one button is pressed:
if (btn() ~= 0) then -- True if any button is pressed end