From 538b9bd093c50d7673ceb699bf885194ec4f659c Mon Sep 17 00:00:00 2001 From: Kazhnuz Date: Tue, 23 Mar 2021 14:13:11 +0100 Subject: [PATCH] chore: remove for the moment mouse support --- sonic-radiance.love/core/callbacks.lua | 12 ++++++------ sonic-radiance.love/main.lua | 10 +--------- 2 files changed, 7 insertions(+), 15 deletions(-) diff --git a/sonic-radiance.love/core/callbacks.lua b/sonic-radiance.love/core/callbacks.lua index 39fe422..8b3f122 100644 --- a/sonic-radiance.love/core/callbacks.lua +++ b/sonic-radiance.love/core/callbacks.lua @@ -29,13 +29,13 @@ function love.draw() core:draw() end -function love.mousemoved(x, y, dx, dy) - core:mousemoved(x, y, dx, dy) -end +-- function love.mousemoved(x, y, dx, dy) +-- core:mousemoved(x, y, dx, dy) +-- end -function love.mousepressed( x, y, button, istouch ) - core:mousepressed(x, y, button, istouch) -end +-- function love.mousepressed( x, y, button, istouch ) +-- core:mousepressed(x, y, button, istouch) +-- end function love.keypressed( key, scancode, isrepeat ) core:keypressed( key, scancode, isrepeat ) diff --git a/sonic-radiance.love/main.lua b/sonic-radiance.love/main.lua index 32ffdc6..7298f68 100644 --- a/sonic-radiance.love/main.lua +++ b/sonic-radiance.love/main.lua @@ -40,12 +40,4 @@ end function love.draw() core:draw() -end - -function love.mousemoved(x, y, dx, dy) - core:mousemoved(x, y, dx, dy) -end - -function love.mousepressed( x, y, button, istouch ) - core:mousepressed(x, y, button, istouch) -end +end \ No newline at end of file