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
Some button combinations cancel out others. Instead of "returning true",
function paddy.isDown(key)
-- Check for any buttons which are currently being pressed
for _,widget in ipairs(paddy.widgets) do
for _,button in ipairs(widget.buttons) do
if button.isDown and button.name == key then return true end
end
end
end
Some button combinations cancel out others. Instead of "returning true",
Change this to change the button state, eg;
The text was updated successfully, but these errors were encountered: