Search found 407 matches

by DaedalusYoung
Sun Oct 19, 2014 11:13 am
Forum: General
Topic: [SOLVED] Graphics order: a flashing square and a blue UI
Replies: 2
Views: 1890

Re: [HELP] Graphics order: a flashing square and a blue UI

function love.load() end function love.update() end function love.draw() -- Square With Random Color love.graphics.setColor( math.random(0, 255), math.random(0, 255), math.random(0, 255) ) love.graphics.rectangle("fill", 350, 250, 120, 120) -- User Interface love.graphics.setColor(255, 25...
by DaedalusYoung
Tue Oct 14, 2014 9:34 pm
Forum: General
Topic: [HELP] Making a Save button
Replies: 29
Views: 12786

Re: [HELP] Making a Save button

No, love.mousepressed is a callback function. LÖVE calls it automatically when the mouse is pressed, it is your job to write the function. If you wanted to do it the way you described, you could do it with love.mouse.isDown , but that would trigger every frame, as long as you keep the mouse pressed....
by DaedalusYoung
Sat Oct 11, 2014 7:11 pm
Forum: General
Topic: Is there interest in a comprehensive guide to LÖVE?
Replies: 5
Views: 2553

Re: Is there interest in a comprehensive guide to LÖVE?

I'm sure there already is something like that, but there's always room for more. The problem is that LÖVE is still changing. Anything you write now may no longer work in a year's time. So if you're planning on making an actual, physical book, then it probably won't last very long. If you'd do it onl...
by DaedalusYoung
Sat Oct 11, 2014 5:23 pm
Forum: General
Topic: LOVE users map
Replies: 182
Views: 117855

Re: LOVE users map

I live near Liverpool.
by DaedalusYoung
Thu Oct 09, 2014 9:09 pm
Forum: Support and Development
Topic: Are there anyone else experiencing jittery movement?
Replies: 9
Views: 4353

Re: Are there anyone else experiencing jittery movement?

I think you can also see some of the black text nametags move slightly different from the background.

My guess would be that some objects are drawn at floored values, while others are rounded differently.
by DaedalusYoung
Thu Oct 09, 2014 11:08 am
Forum: Support and Development
Topic: could not find love.image
Replies: 3
Views: 1747

Re: could not find love.image

It's already solved, love.image was disabled in his conf.lua. :)
by DaedalusYoung
Wed Oct 08, 2014 8:34 pm
Forum: Games and Creations
Topic: Cartorque
Replies: 8
Views: 4481

Re: Cartorque

Hm, well, that doesn't work.
by DaedalusYoung
Wed Oct 08, 2014 7:51 pm
Forum: Games and Creations
Topic: Cartorque
Replies: 8
Views: 4481

Re: Cartorque

Well, the file seems to be fine for me, but I can't run it, because it's an .exe, not a .love.
by DaedalusYoung
Wed Oct 08, 2014 6:15 pm
Forum: Support and Development
Topic: (SOLVED) I can't close program if...
Replies: 11
Views: 6717

Re: I can't close program if...

Don't call love.graphics.print outside of love.draw though.