• Tutorials
  • New tutorial series based on a Unity3D roguelike mini-game tutorial

I have started working on a translation for Godot based off of this&nbsp;Unity3D tutorial. Although it is a mini-game it makes use of high-level programming patterns such as singleton (autoloaded scripts), component, coroutines, observer, finite state machine (some of which are handled by Godot for us) making this more of an intermediate programming tutorial.<br><br>I think the internet is flooded with beginner level tutorials and some of which even popularize bad written code, just because people in charge of these tutorials don't have time to write them. Well, my opinion is you have to make the time and if it takes longer, then it takes longer, I think people appreciate better quality over quantity. Also these will be text based tutorials as opposed to video because of three reasons, with text you can search through it very easily, you don't need to remember&nbsp;when you saw something or in what episode, secondly, I had a poll on the Godot facebook group and about 90% preferred text over other media and finally, with HTML5, JavaScript and interactive web we can have some pretty awesome interactivity!<br><br>So for the time being my focus will be to try and translate some of the Unity3D tutorials over to Godot (in a more professional way, that is not just throw the code around, but instead have structure and logic to it as it applies to Godot), first because they have free assets which we can use and it makes it easier (although don't be fulled, some will be tricky, like the 3D ones since you have to re-map the textures because we can't use the obj files that are compatible with Unity3D directly in Godot so it isn't that straightforward) and second because I'm also new to this and it's good to have a starting point. Then at the end of it all if you're curious you can compare results between Unity3D and Godot (implementation-wise, programming-wise, ease of use etc.) so I think there are a number of benefits to doing this.<br><br>I'd really appreciate your support guys and if you drop by the website please give me some feedback so I can bring higher quality posts and tutorials. They&nbsp;ill be hosted here: https://razvanc-r.gitlab.io/tutorials/<br><br>Thanks for your time!

Hope to see more tutorials like this! :smile:&nbsp;<br>

Make sure not to use any of their assets without permission. Other than that, awesome. :)<br>

Great idea, even I prefer text over videos as far as tuts are concerned. Videos make good demo material, but to sit down and learn something, there's just something about text that makes it easier, though I can't really point out why.

@SurySel, probably the fact that you can jump at different sections at any time without trying to remember&nbsp;when you saw it :). I agree with all of the above, for learning text + interactivity is best.<br><br>So far the responses have been awesome, I honestly didn't think it would have much traction, this is definitely a boost for me! So thanks guys, really appreciate it. Let's make Godot awesome!

Regarding the image split... :)<br><br>It should be in 3.0.2... I cannot promise it'll stay there, because if there's a bug caused by it, it might just get unceremoniously reverted. (Unlikely though, it's reused code in a non-core part of Krita).<br><br>I also cannot promise I'll always respond like this, but teensy changes like these are possible as long as there's time and we understand why :)<br>

@therahedwig nice, good to know about it, I was almost certain that the Image Split operation will disapear from Krita since it looks more like a stray experiment and I intended to update the tutorial with ImageMagick or something else instead when that happened :). But we'll just have to see, either way I'll keep an eye on it. Thanks for the update.<br><br>By the way, this is my $HOME directory so don't just go out assuming :P about my "mess"<br><br><pre class=" CodeBlock">├── Cloud<br>├── Desktop<br>├── Documents<br>├── Downloads<br>├── examples.desktop<br>├── letsencrypt.log<br>├── Music<br>├── Pictures<br>├── Projects<br>├── Public<br>├── References<br>├── Resources<br>├── seaborn-data<br>├── Templates<br>└── Videos</pre>

Hey Raz, I'm a complete beginner to gamedev trying out various engines, have only used a little bit of Unreal 4 yet (and Unity as well, but I was kinda put off by Unity). Would you recommend me to go through something (like in the Docs or whatever) before I can start out with your series for Godot?

Hey @SuryaSel, thanks for the interest! No, I'd say you don't need to go over the docs because I'll be explaining everything (unless I miss something unintentionally), being the first series and all. I want it to be for the complete beginner although the programming concepts I'm using will be of intermediate level. And here is the crux of it: I won't be going into those concepts in great depth, but I will link to external resources, I'm mainly going to use&nbsp;http://gameprogrammingpatterns.com/, but this requires you to know C++ at a basic level at least. What I always say to beginners is that if you want to learn, I mean really want to learn, not just play around, then you have to start learning other stuff on the side, like C/C++, it's something that I'll be stating over and over in my tutorial series: http://www.cplusplus.com/doc/tutorial/.<br><br>But to complete the tutorial and have a final product at the end will not require you to know any of this as I will explain everything that I do but again, explaining how to create something isn't explaining why that something works that way so you might end up having a shallow understanding of some things, but I don't think it would be enough to actually understand how to use them entirely on your own.<br><br>It will be up to you to decide how much of this other stuff you want to get into. But since it will be a while since I'm going to finish the series anyway, you could start poking at other great tutorials:<br><br>-&nbsp;http://www.gamefromscratch.com/page/Godot-Game-Engine-tutorial-series.aspx - good beginner source<br>-&nbsp;https://www.youtube.com/playlist?list=PLv3l-oZCXaql20IlPe7gfBEzomnPSLekY - best video tutorial series I've seen so far, also having a slow enough pace for anyone to understand!<br><br>Give them a shot while you wait on my series :P. Also if you have any comments on what I release I'll be very glad to hear you out!

Also, I don't think I've mentioned this, but I've posted about the tutorial series on reddit and it got some attention, a bit more than I actually thought it would get and I decided to keep that post updated and because there are too many places to take care of (twitter, reddit, facebook etc etc) I'll have the reddit post be the main "news room". If anyone is interested in keeping up with the news:&nbsp;https://www.reddit.com/r/gamedev/comments/538dvp/godot_tutorial_based_off_of_the_roguelike_unity3d/<br>

Hey Raz, thanks for the info, really appreciate it. I dunno what you really mean by 'Basic Level C++', but what I know is equivalent to high-school level, you know with basic data structures like link-lists, binary trees and the like. And apart from that, what I really want to start Godot is by making dice-n-board game with minimal economy and local multiplayer like Monopoly on the PC. I was wondering if you could do a sidetrack on how one can achieve that, considering its turn-based approach.&nbsp;

@SuryaSel, by basic C++ level I mean you should know how functions work, what classes are (maybe heard of inheritence), what's the difference between member variables/functions, global variables/functions, this sort of thing.<br><br>About the monopoly game, I think that this tutorial series I'm working on will help you out with figuring how to do turn base stuff, but the other mechanics not so much. And I'm not planning on deviating from it at the moment since it's my first tutorial series, I have to get it right :) and I still haven't played with the network API so I wouldn't be much help anyway (not in the near future at least). My plan is, as I've said at the start, to try and translate to Godot some other tutorials from Unity and the like, with ever increasing difficulty because it will help me out as much as others.<br><br>So sorry to disappoint you about your game. Meanwhile, if you want to poke around at a fairly complex game done in Godot and is turn based take a look at this:&nbsp;https://github.com/w84death/Tanks-of-Freedom.

By local MP, I actually meant on the same PC :D Regardless though, I'll still follow yours and try to adapt the same concepts to my idea, with maybe a little assistance from the docs as well.&nbsp;<br><br>PS - Thanks for mentioning that patterns book. Just had a glance and looks like a great read to me. Will definintely try to read that up slowly on the sidelines.

you have to make the time and if it takes longer, then it takes longer,

Thanks, that's my main concern about tutorials i've found so far.

wow, amazing work, and thanks for this.

25 days later

Just wanted to let you guys know that I published the next part of the tutorial. Player controller through FSM and collisions plus it goes through a few nice godot features that you might not know about - maybe :)

Looking great so far, nice to see a classic Unity tutorial so easily implemented in Godot!