Which Godot version should I use?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By DodoIta
:warning: Old Version Published before Godot 3 was released.

Hello there!

After a long pause since I’ve been busy with other stuff, I can finally get back to messing around with Godot to try and develop a project of mine. But since Godot 3 is on the way, I was wondering if I should start developing with 3.0 (which is unstable) or stick to 2.1.
Should I choose Godot 3.0 over stability or 2.1 over features?

I think if you want to help with reporting bugs with Godot 3, then by all means use it. Howver, if you are like me; just starting out with it. The lack of documentation may not be much help to you and cuase you to waste time when you may want to be productive instead.

I was tempted by Godot 3 but I like the stability of Godot 2. It does everything I need so far, which is 2D pixel art style projects.

davidpgil | 2017-10-13 05:53

I think that’s a good point, although I have faith in the master branch documentation, I’ve read they are trying to improve it and I’m already appreciating those improvements (the new “your first game” guide is much much better imo).
Besides, my main concern is that by the time my game is finished, 3.0 will be out and I’ll have missed all the new features.
I don’t know really… I’m still confused :stuck_out_tongue:

DodoIta | 2017-10-13 09:39

:bust_in_silhouette: Reply From: volzhs

If I were you, I will choose 3.0 for my personal project. :slight_smile:

Can I ask you why? :smiley:
Can you be more specific?

DodoIta | 2017-10-10 14:51

my favorite part is about gdscript changes.

with 2.x, code should be something like this.

get_node("name").set_pos(get_node("name").get_pos() + Vector2(1,0))

but with 3.x, it can be done like this

$name.position.x += 1

it’s really simple and intuitive.

volzhs | 2017-10-10 15:00

Yes but what abount instability? Should I go for it in spite of that?

DodoIta | 2017-10-10 16:39

IMO, it’s stable enough to proceed personal project with latest master branch.

volzhs | 2017-10-10 16:45

Got it, thank you for your answer :slight_smile:

DodoIta | 2017-10-11 08:14