Well yeah, certainly. I just wondered why you were complicating things by setting the mouse position to two variables in the update function, instead of just doing it all in the draw function.Robin wrote:One pixel is still an awfully small piece of screen. As bartbes pointed out earlier, using an upper and lower bound is better.nevon wrote:What's wrong with:?Code: Select all
function love.draw() if love.mouse.getX() == 300 and love.mouse.getY() == 320 then love.graphics.rectangle(fill,260,260,100,40) love.graphics.setColor(255,255,255) end end
ExampleSomething like that.Code: Select all
function love.draw() local mouseX = love.mouse.getX() local mouseY = love.mouse.getY() if mouseX > 300 and mouseX < 310 and mouseY > 320 and mouseY < 330 then love.graphics.rectangle(fill,260,260,100,40) love.graphics.setColor(255,255,255) end end
Music Bar;Drawn
Forum rules
Before you make a thread asking for help, read this.
Before you make a thread asking for help, read this.
- nevon
- Commander of the Circuloids
- Posts: 938
- Joined: Thu Feb 14, 2008 8:25 pm
- Location: Stockholm, Sweden
- Contact:
Re: Music Bar;Drawn
- Jasoco
- Inner party member
- Posts: 3728
- Joined: Mon Jun 22, 2009 9:35 am
- Location: Pennsylvania, USA
- Contact:
Re: Music Bar;Drawn
Fill needs to be a string. "fill". In your Rectangle call.
love.graphics.rectangle("fill", x, y, w, h)
You have it as just fill in your example.
love.graphics.rectangle("fill", x, y, w, h)
You have it as just fill in your example.
- Robin
- The Omniscient
- Posts: 6506
- Joined: Fri Feb 20, 2009 4:29 pm
- Location: The Netherlands
- Contact:
Re: Music Bar;Drawn
Oh, and the love.graphics.setColor(255,255,255) probably isn't necessary here either.
Help us help you: attach a .love.
Who is online
Users browsing this forum: Bing [Bot] and 8 guests