clip drawings inside the border

This commit is contained in:
Kartik K. Agaram 2022-05-11 13:00:15 -07:00
parent 3bc61ed13f
commit d8e5a1ce12
1 changed files with 2 additions and 2 deletions

View File

@ -75,8 +75,8 @@ function love.update(dt)
if love.mouse.isDown('1') then
for i, line in ipairs(lines) do
if type(line) == 'table' then
local y = love.mouse.getY()
if y >= line.y and y < line.y + line.h then
local x, y = love.mouse.getX(), love.mouse.getY()
if y >= line.y and y < line.y + line.h and x >= 12 and x < 12+line.w then
lines.current = line
process_drag(line,love.mouse.getX(),love.mouse.getY())
end