sokoban.love/0038-on_editor_scrollbar

7 lines
237 B
Plaintext

on_editor_scrollbar = function(x,y)
if x < Editor_state.right+15 then return end
if x > Editor_state.right+45 then return end
if y < Editor_scrollbar_top then return end
if y > Editor_scrollbar_bottom then return end
return true
end