Page 1 of 1

Sheepollution guide up to date?

Posted: Sat Apr 27, 2024 9:42 pm
by CPop
I just started learning love2d and have been using the Sheepollution tutorial. I notice most of the comments at the bottom of each page are 6-7 years old. I'm wondering if the coding practices remain the same of if there have been any big changes since.

Re: Sheepollution guide up to date?

Posted: Sat Apr 27, 2024 11:22 pm
by MrFariator
I skim-read the Sheepolution tutorial, and for the most part as far as I can see, I don't see anything that wouldn't work with current versions of löve. Even the libraries that the tutorial uses or mentions (tick, classic, bump, HC) are older than the tutorial itself, and are perfectly fine to use with current versions of löve, because they rely on mostly purely lua (HC uses some löve graphics APIs for optionally drawing collision shapes, but otherwise tends to be lua only, if I recall).

In the event that some löve function doesn't work the way it's described in the tutorial, you can look up the wiki to find what the current API for it is. At most, you likely just have to change how you pass the data to the function (or maybe the name if the function is deprecated), and not much else. The author of the tutorial also frequents löve's community Discord server, so if you find something that might need updating, that's a place to poke him.

Really, the main thing of note is that while it's perfectly fine to use a tutorial to learn how to do things, do note that you can arrive at your own solutions or designs. Then again, that goes for all programming tutorials, when you get the hang of coding things.

Re: Sheepollution guide up to date?

Posted: Sun Apr 28, 2024 4:31 pm
by CPop
Good to know. Thanks for the reply!

Re: Sheepollution guide up to date?

Posted: Wed May 08, 2024 5:26 pm
by LegendaryRedfox
I recently followed the VSCode guide and it worked just fine. If you're still looking for references, there's this youtube channel that is quite good: https://www.youtube.com/@Challacade

His udemy course is very beginner-friendly

Re: Sheepollution guide up to date?

Posted: Thu May 23, 2024 3:27 am
by zingo
I initially went through each Sheepolution chapter using...I believe it was version 11.3, and didn't have any issues. I still occasionally reference Sheepolution now and then (somewhat recently to get an idea for how to go about animations, for example), and everything seems to work just fine. Same for "learn2love", and Kikito's "tile" tutorial :)

Having said that...I do wish that the author would add some new content for more advanced concepts (e.g. handling game states/scenes, pathfinding/motion planning, enhanced AI, etc.) Of course, most of this can already be found in the forums...but it'd be great to have at least some of that organized into a more centralized and concise "tutorial" format, building upon the basics already established.