Merge lines.love

This commit is contained in:
Kartik K. Agaram 2024-05-19 23:01:18 -07:00
commit 3cf0e4bf71
1 changed files with 22 additions and 0 deletions

View File

@ -319,6 +319,17 @@ function App.mousereleased(x,y, mouse_button)
end
end
function App.mousemoved(x,y, dx,dy, is_touch)
if current_app_is_warning() then return end
if Current_app == 'run' then
if run.mouse_move then run.mouse_move(dx,dy) end
elseif Current_app == 'source' then
if source.mouse_move then source.mouse_move(dx,dy) end
else
assert(false, 'unknown app "'..Current_app..'"')
end
end
function App.wheelmoved(dx,dy)
if current_app_is_warning() then return end
if Current_app == 'run' then
@ -330,6 +341,17 @@ function App.wheelmoved(dx,dy)
end
end
function App.mousefocus(in_focus)
if current_app_is_warning() then return end
if Current_app == 'run' then
if run.mouse_focus then run.mouse_focus(in_focus) end
elseif Current_app == 'source' then
if source.mouse_focus then source.mouse_focus(in_focus) end
else
assert(false, 'unknown app "'..Current_app..'"')
end
end
function love.quit()
if Disable_all_quit_handlers then return end
if current_app_is_warning() then return end