Godot's 2D engine gets several improvements for upcoming 4.0
godotengine.org
Godot's 2D engine gets several improvements for upcoming 4.0
1–10 of 23 posts
Re: Godot's 2D engine gets several improvements for upcoming 4.0
#2 More work is also going towards the 2D engine. Gilles Roudiere is working on a new 2D tilemap system an editor that will hopefully overcome most of the limitations with the current one. You can follow his progress on this twitter account.
The tilemap interface is useable but I've personally struggled to get autotiling to work for tilemaps that were supposedly designed for autotiling. I browsed through the twitter feed and the progress Gilles is making is really exciting and just a handful of the features will make the interface much easier to use even if autotiling remains challenging. Lots of quality of life improvements coming either way.Re: Godot's 2D engine gets several improvements for upcoming 4.0
#3I've written a lot of words - some of them even here on HN - about my frustrations around Unity, most specifically slow compile times and a poorly-thought-out and hobbled API that always seems to be 20% broken in frustrating ways. Godot fixes so many of the frustrations that I previously had with Unity, and it's such a breath of fresh air!
The APIs are generally well thought out and a pleasure to deal with. 2D always felt second-class in Unity - in Godot it's a clear first class citizen (I mean, just see OP). Things generally just make sense, and there's a lot of bells and whistles that I've found personally really useful.
The compile times are virtually instantaneous if you use GDScript - you can even hot load in new changes into a running game (although since it compiles so fast, I rarely even need to do that!) - and that is SUCH an important thing for game development that I can't even explain how great it is.
Also, the UI of the editor is just SNAPPY! Man do I love how fast everything feels in the editor. I hate to keep railing on Unity, but every time you edit a C# file at all in Unity, Unity has to do a reload of assets and it takes 5-10 seconds for the editor to be usable again. Compare this with Godot, which loads new assets virtually instantaneously, and practically never lags for any time at all. It's amazing. I can never go back.
It is a bit rough around the edges - it's only being developed by a small open source team rather than the hundreds of paid developers over at places like Unity and Unreal - but it's really a joy to use.
P.S. The only real problem I found with Godot is that GDScript needs a better typesystem, so I started working on a hobby project to compile TypeScript into GDScript[1]. It's a massive WIP right now but if that sounds like fun to you, I could really use some help.
Re: Godot's 2D engine gets several improvements for upcoming 4.0
#4Kinda anti trust ish for Epic to fund Godot though. Unity competes with both Unreal ( I'll argue with HDRP Unity can generally match Unreal in most use cases) and Godot, while Unreal never competes with Godot.
Re: Godot's 2D engine gets several improvements for upcoming 4.0
#5I've started using Godot recently, and I absolutely love it! I've written a lot of words - some of them even here on HN - about my frustrations around Unity, most specifically slow compile times and a poorly-thought-out and hobbled API that always seems to be 20% broken in frustrating ways. Godot fixes so many of the frustrations that I previously had with Unity, and it's such a breath of fresh air! The APIs are gene…
Re: Godot's 2D engine gets several improvements for upcoming 4.0
#6I've started using Godot recently, and I absolutely love it! I've written a lot of words - some of them even here on HN - about my frustrations around Unity, most specifically slow compile times and a poorly-thought-out and hobbled API that always seems to be 20% broken in frustrating ways. Godot fixes so many of the frustrations that I previously had with Unity, and it's such a breath of fresh air! The APIs are gene…
Re: Godot's 2D engine gets several improvements for upcoming 4.0
#7I've started using Godot recently, and I absolutely love it! I've written a lot of words - some of them even here on HN - about my frustrations around Unity, most specifically slow compile times and a poorly-thought-out and hobbled API that always seems to be 20% broken in frustrating ways. Godot fixes so many of the frustrations that I previously had with Unity, and it's such a breath of fresh air! The APIs are gene…
Godot on the other hand is straightforward, fast, and lightweight in a way I didn't think was possible. Like I'm absolutely floored the executable is ~50MB and the low memory usage made me question intially if I had even launched it properly. Regardless of the pros/cons, I'm just enjoying gamedev again.
Coming from JS, the optional type system doesn't bother me none. My only annoyances are a few missing language features like increment operators or type coercion (even in Java I don't need to cast a number to a string to print it).
Re: Godot's 2D engine gets several improvements for upcoming 4.0
#8I've started using Godot recently, and I absolutely love it! I've written a lot of words - some of them even here on HN - about my frustrations around Unity, most specifically slow compile times and a poorly-thought-out and hobbled API that always seems to be 20% broken in frustrating ways. Godot fixes so many of the frustrations that I previously had with Unity, and it's such a breath of fresh air! The APIs are gene…
The mitigating factor is that it's got good bindings support and a codebase that's very tractable to poke around in, so you can easily extend it in other languages.
Re: Godot's 2D engine gets several improvements for upcoming 4.0
#9I've started using Godot recently, and I absolutely love it! I've written a lot of words - some of them even here on HN - about my frustrations around Unity, most specifically slow compile times and a poorly-thought-out and hobbled API that always seems to be 20% broken in frustrating ways. Godot fixes so many of the frustrations that I previously had with Unity, and it's such a breath of fresh air! The APIs are gene…
fyi they've added incremental compilation support in 2021!
Re: Godot's 2D engine gets several improvements for upcoming 4.0
#10That said, usual disclaimer applies: Godot is _not_ written in Go.