Page 1 of 1

Mouse module and cursor invisibility [SOLVED]

Posted: Tue Jan 08, 2019 9:54 am
by lydzje
Hello guys, I want to disable the mouse love module

Code: Select all

t.modules.mouse = false
but I need it in order to make the mouse cursor invisible, since it won't be used.

Code: Select all

love.mouse.setVisible(false)
Is there other way to make the mouse cursor invisible through LÖVE 11.2?

Re: Mouse module and cursor invisibility

Posted: Tue Jan 08, 2019 3:35 pm
by zorg
Is not disabling the mouse module not an option for you? and if so, why?

Re: Mouse module and cursor invisibility

Posted: Tue Jan 08, 2019 9:34 pm
by lydzje
Right now I'm not disabling the module, it's definitely an option. The only reason I have to disable it, is to have a coherent code. I don't want the module if I'm not using it.

But I've been thinking about it today: If I want the cursor to be invisible, I want to use an extra mouse feature, so I want to use the module.

In conclussion, I'm not worried anymore about enabling this module since I'm satistying my code fetish already.