sokoban.love/0040-on_editor_scrollbar_area

7 lines
234 B
Plaintext

on_editor_scrollbar_area = function(x,y)
if x < Editor_state.right+15 then return end
if x > Editor_state.right+45 then return end
if y < Editor_state.top then return end
if y > Editor_state.bottom then return end
return true
end