bugfix: touch handler signatures
Dependencies
- [2]
LPOO23FQresolve conflicts - [3]
7EJUTFDQwire up touch handlers - [4]
LXFHXL2NMerge text.love - [5]
RHARLLIQMerge text0 - [*]
OTIBCAUJlove2d scaffold
Change contents
- replacement in main.lua at line 210
function App.touchpressed(x,y, dx,dy, pressure)function App.touchpressed(id, x,y, dx,dy, pressure) - replacement in main.lua at line 213
if on.touch_press then on.touch_press(x,y, dx,dy, pressure) endif on.touch_press then on.touch_press(id, x,y, dx,dy, pressure) end - replacement in main.lua at line 216
function App.touchreleased(x,y, dx,dy, pressure)function App.touchreleased(id, x,y, dx,dy, pressure) - replacement in main.lua at line 219
if on.touch_release then on.touch_release(x,y, dx,dy, pressure) endif on.touch_release then on.touch_release(id, x,y, dx,dy, pressure) end - replacement in main.lua at line 222
function App.touchmoved(x,y, dx,dy, pressure)if on.touch_move then on.touch_move(x,y, dx,dy, pressure) endfunction App.touchmoved(id, x,y, dx,dy, pressure)if on.touch_move then on.touch_move(id, x,y, dx,dy, pressure) end