This commit is contained in:
Kartik K. Agaram 2022-05-11 21:52:09 -07:00
parent ba0d0028ea
commit 1ff2711fd9
1 changed files with 4 additions and 3 deletions

View File

@ -77,10 +77,11 @@ function love.update(dt)
if love.mouse.isDown('1') then
for i, line in ipairs(lines) do
if type(line) == 'table' then
local drawing = line
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())
if y >= drawing.y and y < drawing.y + drawing.h and x >= 12 and x < 12+drawing.w then
lines.current = drawing
process_drag(drawing,love.mouse.getX(),love.mouse.getY())
end
end
end