c3d.mousereleased

A callback function triggered when the user releases a pressed mouse button i terms of arguments and how it works it is the same as mousepressed

arguments

function c3d.mousepressed(x,y,btn,click_count)
    if btn == 0 and click_count == 2 then
        error("released a double left click at "..x..","..y,0)
    end
end