Music Bar;Drawn

Questions about the LÖVE API, installing LÖVE and other support related questions go here.
Forum rules
Before you make a thread asking for help, read this.
User avatar
nevon
Commander of the Circuloids
Posts: 938
Joined: Thu Feb 14, 2008 8:25 pm
Location: Stockholm, Sweden
Contact:

Re: Music Bar;Drawn

Post by nevon »

Robin wrote:
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
?
One pixel is still an awfully small piece of screen. As bartbes pointed out earlier, using an upper and lower bound is better.

Example

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
Something like that.
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.
User avatar
Jasoco
Inner party member
Posts: 3728
Joined: Mon Jun 22, 2009 9:35 am
Location: Pennsylvania, USA
Contact:

Re: Music Bar;Drawn

Post by Jasoco »

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.
User avatar
Robin
The Omniscient
Posts: 6506
Joined: Fri Feb 20, 2009 4:29 pm
Location: The Netherlands
Contact:

Re: Music Bar;Drawn

Post by Robin »

Oh, and the love.graphics.setColor(255,255,255) probably isn't necessary here either.
Help us help you: attach a .love.
Post Reply

Who is online

Users browsing this forum: Bing [Bot] and 8 guests