this post was submitted on 08 Aug 2023
31 points (94.3% liked)

Godot

5664 readers
50 users here now

Welcome to the programming.dev Godot community!

This is a place where you can discuss about anything relating to the Godot game engine. Feel free to ask questions, post tutorials, show off your godot game, etc.

Make sure to follow the Godot CoC while chatting

We have a matrix room that can be used for chatting with other members of the community here

Links

Other Communities

Rules

We have a four strike system in this community where you get warned the first time you break a rule, then given a week ban, then given a year ban, then a permanent ban. Certain actions may bypass this and go straight to permanent ban if severe enough and done with malicious intent

Wormhole

[email protected]

Credits

founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 8 points 1 year ago* (last edited 1 year ago)
  • It's light. Compared to Unity which spends ages creating projects, compiling scripts, building, etc. Godot feels very snappy. Unity also generates about 350mb of placeholders every time you create a project, something I always held a grudge against because my drive isn't very big (500gb)

  • It's open-source. Obviously a big reason for a lot of people, it feels good not to have to worry about any licenses or a business suit CEO saying devs are idiots

  • It's more cohesive. It increasingly feels like you need a lot of extensions to get work done on Unity, and there are like 3 different systems to do one thing. In Godot everything feels more straightforward, and it's batteries-included so you have support for things like Tweens out of the box compared to Unity. Things are generally easier too like Autoloads compared to having to manually make singletons.

  • I love signals. Probably the most subjective thing, but for me, I think signals are great and a way better alternative than blindly calling functions on another object. Other engines may have it but usually they don't work very well.