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 .
JamiezRascall
Prole
Posts: 5 Joined: Thu Jun 24, 2010 2:08 am
Post
by JamiezRascall » Sat Jun 26, 2010 7:31 am
Ok this is what I got currently if any one can help please do
In function love.load() I've got for the menu;
Code: Select all
MouseX = love.mouse.getX()
MouseY = love.mouse.getY()
and in function love.draw() I've got for the menu;
Code: Select all
if(MouseX == 260 and MouseY == 260)
then do
love.graphics.rectangle(line,260,260,50,20)
love.graphics.setColor(255,255,255)
end
Should this work if I put my cursor at 260 X axis and 260 Y axis it should draw the box right?
bartbes
Sex machine
Posts: 4946 Joined: Fri Aug 29, 2008 10:35 am
Location: The Netherlands
Contact:
Post
by bartbes » Sat Jun 26, 2010 7:34 am
No, this works only if you put your mouse at 260,260 during startup, you should move the getX/Y statements to love.update.
JamiezRascall
Prole
Posts: 5 Joined: Thu Jun 24, 2010 2:08 am
Post
by JamiezRascall » Sat Jun 26, 2010 8:05 am
I thought that but then I thought it was only a timer function D:
Heres another question if I wanted like a area of the screen instead of a point how would i do it with the if???
bartbes
Sex machine
Posts: 4946 Joined: Fri Aug 29, 2008 10:35 am
Location: The Netherlands
Contact:
Post
by bartbes » Sat Jun 26, 2010 8:15 am
something like:
Code: Select all
if mouseX < upperXbound and mouseX > lowerXbound and mouseY < upperYbound and mouseY > lowerYbound then
JamiezRascall
Prole
Posts: 5 Joined: Thu Jun 24, 2010 2:08 am
Post
by JamiezRascall » Sat Jun 26, 2010 9:52 am
Oh gawd..
It still will not draw the graphics when I go over the position...
function love.load()
Code: Select all
MouseX = love.mouse.getX()
MouseY = love.mouse.getY()
function love.update(dt)
Code: Select all
if(MouseX == 300 and MouseY == 320)
then do
love.graphics.rectangle(fill,260,260,100,40)
love.graphics.setColor(255,255,255)
end
vrld
Party member
Posts: 917 Joined: Sun Apr 04, 2010 9:14 pm
Location: Germany
Contact:
Post
by vrld » Sat Jun 26, 2010 10:11 am
JamiezRascall wrote: function love.update(dt)
That is the problem. Do drawing stuff in
love.draw() .
I have come here to chew bubblegum and kick ass... and I'm all out of bubblegum.
hump |
HC |
SUIT |
moonshine
bartbes
Sex machine
Posts: 4946 Joined: Fri Aug 29, 2008 10:35 am
Location: The Netherlands
Contact:
Post
by bartbes » Sat Jun 26, 2010 10:17 am
So, basically, what you listed as love.load goes to love.update and what you listed as love.update goes to love.draw.
nevon
Commander of the Circuloids
Posts: 938 Joined: Thu Feb 14, 2008 8:25 pm
Location: Stockholm, Sweden
Contact:
Post
by nevon » Sat Jun 26, 2010 11:14 am
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
?
bartbes
Sex machine
Posts: 4946 Joined: Fri Aug 29, 2008 10:35 am
Location: The Netherlands
Contact:
Post
by bartbes » Sat Jun 26, 2010 11:30 am
Nothing.
Robin
The Omniscient
Posts: 6506 Joined: Fri Feb 20, 2009 4:29 pm
Location: The Netherlands
Contact:
Post
by Robin » Sat Jun 26, 2010 12:14 pm
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.
Users browsing this forum: Ahrefs [Bot] , Google [Bot] , TheFoxyHu3 and 3 guests