they should be? this was affected by recent updates though⌠will check
⌠ok @Justmat, no i misremembered, map isnât supported for 'trigger', but is supported by 'binary' type in 'trigger' mode (which is the default.)
so itâs a simple change:
function init()
-- not mappable:
params:add({id="t", type="trigger", action=function()print("bang!") end})
-- mappable:
params:add({id="tb", type="binary", action=function()print("bang!") end})
end
iâm not really sure if we are supposed to be deprecating trigger for binary or what. (iâm guessing yes)