Search found 2 matches

by kylarlyrik
Mon Jan 07, 2019 12:56 am
Forum: Support and Development
Topic: Is it possible to adjust the opacity of cursor in Love2D?
Replies: 4
Views: 2828

Re: Is it possible to adjust the opacity of cursor in Love2D?

Thanks to ReFreezed , zorg , and pgimeno , I found a solution to how I can change my cursor's opacity. This is to anyone who wants to do the same: cursorData = love.image.newImageData("path/to/image") cursorData:mapPixel(function(x, y, r, g, b, a) return r, g, b, a/2 end) cursor = love.mou...
by kylarlyrik
Sun Jan 06, 2019 6:35 pm
Forum: Support and Development
Topic: Is it possible to adjust the opacity of cursor in Love2D?
Replies: 4
Views: 2828

Is it possible to adjust the opacity of cursor in Love2D?

So, I am using a custom cursor that I made. I wonder if there is way to lower the opacity of my custom cursor.