Page 1 of 3
Love Tutorials on headchant.com
Posted: Mon Nov 29, 2010 1:00 pm
by headchant
I'm writing up a small tutorial for love2d on my blog on
http://www.headchant.com!
In the tutorial series I will develop a small space invaders like game. The first couple of posts were about organizational stuff like choosing a text editor and how to set up love.
I hope this brings some more attention to this awesome framework
If you have any questions feel free to ask them here or in the comments of the blog posts. Let me know when you find anything I have done horribly wrong.
Re: Love Tutorials on headchant.com
Posted: Mon Nov 29, 2010 1:28 pm
by Robin
The flowchart contains two errors:
- "Love.load()" does not really start with a capital, you do this right the rest of the time.
- That's not really how it works. love.load() doesn't call love.update(), and love.update() and love.draw() don't call each other. On the other hand, it might be better to have an incorrect flowchart than the more complicated love.run().
- Fire up your Text Editor, make a new file called main.lua and save it to a new directory called “tut1″
I think you should say something more about this, it's really important and very easy to miss.
I missed part 0 of your tutorial, in which you do explain this. You could, however, link to that post, because people might have missed that part, just like I did.
In the code examples, proper indentation will make it easier to follow.
Nice work.
Re: Love Tutorials on headchant.com
Posted: Mon Nov 29, 2010 5:41 pm
by headchant
Flowchart: Yes, I know it's incorrect but I think it helps to get a first understanding of the order in which the functions are executed. Maybe I should include a footnote stating this. I will change the incorrect capital letters later.
Links: Added links to all previous articles/parts of the tutorial series on the top of the page.
Thank you for pointing that out!
Re: Love Tutorials on headchant.com
Posted: Mon Nov 29, 2010 9:12 pm
by zac352
redlock wrote:Flowchart: Yes, I know it's incorrect but I think it helps to get a first understanding of the order in which the functions are executed. Maybe I should include a footnote stating this. I will change the incorrect capital letters later.
YOU SOUND EXACTLY LIKE MY TEACHER WHEN I TOLD HER THAT M$ ACCESS NAMED THE DATABASES AND TABLES WRONG! O_O
But anyway, if it wasn't for tutorials like yours, I never would have figured out how to use Glade to make GTK+ projects.
Re: Love Tutorials on headchant.com
Posted: Fri Dec 10, 2010 10:45 am
by qubodup
I was inspired by this tutorial and especially the diagram to make one myself:
simple-game-making-1
Re: Love Tutorials on headchant.com
Posted: Fri Dec 10, 2010 2:57 pm
by Ryne
qubodup wrote:I was inspired by this tutorial and especially the diagram to make one myself:
simple-game-making-1
That's a rather nicely laid out tutorial. Easily explained for sure. I think all of the tutorials posted here are good, I just like those little images you used
Good job guys!
Re: Love Tutorials on headchant.com
Posted: Fri Dec 10, 2010 7:26 pm
by tentus
Ryne wrote:qubodup wrote:I was inspired by this tutorial and especially the diagram to make one myself:
simple-game-making-1
That's a rather nicely laid out tutorial. Easily explained for sure. I think all of the tutorials posted here are good, I just like those little images you used
Good job guys!
Wait, why don't we have tutorials put together in Love itself? That would be an excellent twofer, it seems so obvious!
On topic, I concur, those are some nice diagrams, well done.
Re: Love Tutorials on headchant.com
Posted: Sun Dec 12, 2010 7:38 pm
by headchant
qubodup wrote:I was inspired by this tutorial and especially the diagram to make one myself:
simple-game-making-1
Yes! Spread the love. Your diagram looks a lot nicer than mine. Will definitely add a link to your tutorial later on.
tentus wrote:
Wait, why don't we have tutorials put together in Love itself?
Good idea. I just don't see how this should look like in practice. Could you elaborate and make an example?
Re: Love Tutorials on headchant.com
Posted: Sun Dec 12, 2010 11:19 pm
by tentus
I was thinking of something about like this (except that I'm writing this on my Droid while on a bus, so I have no idea if it actually works, and it probably looks just awful).
Droid limitations aside, you get the idea. Interactive, animated, probably cuter that Lua the Cat with a bunch of strings. Something that stresses accessibility over everything else.
Re: Love Tutorials on headchant.com
Posted: Mon Dec 13, 2010 11:50 pm
by johnblanco
tentus wrote:I was thinking of something about like this (except that I'm writing this on my Droid while on a bus, so I have no idea if it actually works, and it probably looks just awful).
Droid limitations aside, you get the idea. Interactive, animated, probably cuter that Lua the Cat with a bunch of strings. Something that stresses accessibility over everything else.
Woah!
You are very talented, it's not easy to write a working program on a bus, it looks good too.
I never wrote a program and made it work the first time, no matter how simple.