wire up mouse move handler
Dependencies
- [2]
4H4JTSFImouse wheel support - [3]
EUWHJ7JJinclude a brief reference enabling many useful apps - [*]
TNRO6KLZnew live app - [*]
CCVA7636bundle a few more things
Change contents
- edit in reference.md at line 63
* `on.mouse_move(x,y, dx,dy, istouch)` -- called when you move the mouse.Provides in `x` and `y` the point on the screen at which the click occurredand in `dx` and `dy` the amount moved since the previous call of`mouse_move`.(Based on [LÖVE](https://love2d.org/wiki/love.mousemoved).) - edit in main.lua at line 410
function love.mousemoved(x,y, dx,dy, istouch)if Mode == 'error' then return endif on.mouse_move then on.mouse_move(x,y, dx,dy, istouch) endend - edit in 0001-on at line 15[6.1275][2.111]
-- on.mouse_move (see love.mousemoved)