Search found 407 matches

by DaedalusYoung
Thu Jan 01, 2015 2:38 am
Forum: General
Topic: Happy New Year!
Replies: 7
Views: 2571

Happy New Year!

Hope you all have a Lövely 2015!
by DaedalusYoung
Tue Dec 09, 2014 1:36 pm
Forum: General
Topic: Any reason not to do your logic in love.draw?
Replies: 6
Views: 4046

Re: Any reason not to do your logic in love.draw?

Also, sometimes you want to update things in a different order than how you draw them. For example, a parallaxing background changes depending on player position, so you need to update the player first, then you can update the background. But you will want to draw the background first, and then the ...
by DaedalusYoung
Sun Dec 07, 2014 12:44 pm
Forum: Support and Development
Topic: FPS Stuck at 50
Replies: 3
Views: 1922

Re: FPS Stuck at 50

Did you upgrade video drivers?
by DaedalusYoung
Tue Dec 02, 2014 9:38 pm
Forum: General
Topic: development environment
Replies: 24
Views: 9242

Re: development environment

None of the above. I just use TextWrangler.
by DaedalusYoung
Fri Nov 07, 2014 11:09 pm
Forum: Support and Development
Topic: White jaggies when drawing rotated hard-edged images
Replies: 3
Views: 3447

Re: White jaggies when drawing rotated hard-edged images

This is because the transparent area also has a colour. You just can't see it normally, because it is transparent, but when you rotate it, the alpha channel gets antialiased and the underlying colour shines through. I'm not entirely sure how, but you should try making the transparent area the same c...
by DaedalusYoung
Tue Nov 04, 2014 5:43 pm
Forum: Libraries and Tools
Topic: LÖVE3D
Replies: 201
Views: 166540

Re: LOVE3D: For Realsies

As I said in another post, I make no illusions that LOVE is useful for the next Call of Duty or Grand Theft Auto. From what I can see, I'd say it will be for a GTA1 or GTA2 clone. With curved roads and better car handling. And larger maps. And better train integration. And more interesting storylin...
by DaedalusYoung
Sun Oct 26, 2014 4:38 pm
Forum: General
Topic: Linking/merging drawings
Replies: 3
Views: 3107

Re: Linking/merging drawings

If they're static, you can draw them to a Canvas, then draw the Canvas to screen.
by DaedalusYoung
Sun Oct 26, 2014 8:05 am
Forum: Support and Development
Topic: Rads^9000 "Safety box" spawn, and alignment bug
Replies: 2
Views: 2094

Re: Rads^9000 "Safety box" spawn, and alignment bug

The love.keyreleased function is called only once, so trying to change the position of an object over time is not going to work in there. Also, dt only exists in the love.update function, so you will get errors when trying to use that in another function.
by DaedalusYoung
Wed Oct 22, 2014 9:56 pm
Forum: General
Topic: How to make a game with LOVE?
Replies: 17
Views: 10473

Re: How to make a game with LOVE?

A good way to learn programming with LÖVE is also to make Code Doodles . Just write a simple program, experiment with functions and see what you can come up with, no need to be advanced (it's supposed to be simple anyway). Take a specific function and write a program around that, you'll learn exactl...