Search found 46 matches

by Gerrit
Fri Mar 27, 2009 2:48 pm
Forum: Games and Creations
Topic: A Platformer With Love!
Replies: 76
Views: 39620

Re: A Platformer With Love!

Looks great :) Made a screen so the others will now how it looks. I had to change your "require" in main.lua from "clouds" to "clouds.lua" to get it running though. Now just some more levels & obstacles and you have a small game. http://img165.imageshack.us/img165/6...
by Gerrit
Fri Mar 27, 2009 11:43 am
Forum: Support and Development
Topic: Are there plans to enlarge "image" with more functions?
Replies: 5
Views: 3797

Re: Are there plans to enlarge "image" with more functions?

I'm wondering why there isn't the possibility to draw on a backbuffer first. AFAICT, you always draw to the back buffer. Then LÖVE swaps the buffers for you automatically upon return from your draw() function. Thanks, didn't know that :) How about this, though: myImage = love.graphics.newImage(200,...
by Gerrit
Fri Mar 27, 2009 12:03 am
Forum: Support and Development
Topic: Are there plans to enlarge "image" with more functions?
Replies: 5
Views: 3797

Are there plans to enlarge "image" with more functions?

Hey! I'm wondering why there isn't the possibility to draw on a backbuffer first. I was going to do it like that until I discovered that all drawing functions are only for the screen. Are there plans to make it possible to create and edit images? It would make some stuff easier to do and would impro...
by Gerrit
Thu Mar 26, 2009 5:12 pm
Forum: Libraries and Tools
Topic: Final Fantasy 7 to MMOJRPG
Replies: 12
Views: 15421

Re: Final Fantasy 7 to MMOJRPG

Not simple project, but possible. It actually is unless you don't have anything else to do and plan to code the next two years on this project. This would be the biggest project ever tried to do in Love and I can tell you now that you're not going to finish it. I've seen a lot big project proposals...
by Gerrit
Thu Mar 26, 2009 3:23 am
Forum: Support and Development
Topic: Any help with geometry?
Replies: 3
Views: 2221

Re: Any help with geometry?

Well, thank you Sir! :ultrahappy: This is what I was looking for. It's easier than I thought and really fast. At least in 640x480. I guess to animate a lot of objects/bullets in 1280x720 I need to use love.physics. But that's far away. I'm still working on a prototype. Next thing would be to find th...
by Gerrit
Wed Mar 25, 2009 8:53 pm
Forum: Support and Development
Topic: Any help with geometry?
Replies: 3
Views: 2221

Any help with geometry?

Hi there! I'm playing around with Löve now for a couple of days and there are some obstacles I can't solve myself (at this moment) or I have no idea where to look for answers. So, my first problem was that I had a point, an angle and the speed of an object. To get the new coordinates I tried to use ...