top | item 34550365

(no title)

allmodelsRwrong | 3 years ago

What are your thoughts on GDScript? The reason I ask is I do a lot of work with Python these days and I like it most of the time. So I've been curious about a high level dynamic typed language for game dev. I have played around with Unity in the past and picked Unreal for my current project this time but kinda regretting that. I'm not doing anything technically impressive so I thought blueprints would help speed things up but I'm less than impressed.

discuss

order

nightowl_games|3 years ago

GDScript is awesome to use from a developer experience perspective. The documentation for everything being built into the editor (F1!) is pretty awesome. The api that is provided to GDScript for everything from strings to file operations to url requests is pretty great.

That being said, GDScript has some flaws: it's performance is bad, the typing system needs work, it doesnt allow cyclical references of classes and the coroutine API is not greatly designed.

But for prototyping game code it's pretty hard to beat for developer speed.

For UI code it's top tier.

I think you'll like Godot. I generally find it faster to develop things in than either Unity or Unreal.

I've got a pretty huge toolbox of custom modular scripts for adding functionality to UIs, and a pretty solid theming and layout system.

manchmalscott|3 years ago

Fortunately, those concerns are all, if not fixed, then much improved in Godot 4. Just a couple weeks ago, they increased GDScript 2.0 perf by a lot, the type system is much more present (typed arrays, real enums, exported custom resources), cyclical references got merged in a month or two ago, and they've done some work on coroutines with the new await syntax.

I'm looking forward to 4.0 coming out (well, 4.1) when they go back to smaller incremental updates and a higher focus on stability, so I can start using it for more projects. If the web builds weren't so broken I would have used it for ludem dare this month, but I went back to 3.5 and sorely missed the new features.