This commit is contained in:
Kartik K. Agaram 2022-05-11 21:52:57 -07:00
parent 1ff2711fd9
commit a405f9e777
1 changed files with 1 additions and 5 deletions

View File

@ -81,17 +81,13 @@ function love.update(dt)
local x, y = 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())
table.insert(drawing.pending, {x=love.mouse.getX(), y=love.mouse.getY()})
end
end
end
end
end
function process_drag(drawing, x,y)
table.insert(drawing.pending, {x=x, y=y})
end
function love.mousereleased(x,y, button)
if lines.current then
if lines.current.pending then