diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2024-05-19 22:40:27 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2024-05-19 22:40:27 -0700 |
commit | b6102d04897a795818cd43ff2d48e20417a927e5 (patch) | |
tree | 300df8c19ce5c768e9978e30642b79510dbaeed1 /main.lua | |
parent | 093da1e7f88a24e8572f63d5178f8b71d32b4b74 (diff) | |
download | lines.love-b6102d04897a795818cd43ff2d48e20417a927e5.tar.gz |
mousemoved handler
Diffstat (limited to 'main.lua')
-rw-r--r-- | main.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/main.lua b/main.lua index b40ddf2..2cb7192 100644 --- a/main.lua +++ b/main.lua @@ -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 |