If you click on a link and make a purchase we may receive a small commission. Read our editorial policy.

What is the best game engine: is Godot right for you?

The GamesIndustry.biz Academy's in-depth guide to Godot, a flexible, versatile, and intuitive engine (now updated to include Godot 4)

Image credit: Cassette Beasts, from Bytten Games

For developers just starting in the industry, the task of choosing the best game engine can be daunting. Here, we'll try to address many of the issues concerning one of the most popular game engines, Godot, so you can see if it's the right game engine for your project.

You can read our other in-depth guides on all the major game engines from this page.

While big game engines such as Unity and Unreal have become more and more accessible, the indie scene continues to rely on smaller engines that have a community of dedicated developers.

These hidden gems include Monogame and Construct, but Godot is becoming an increasingly popular choice, having seen several spikes in new users last year, such as a significant increase in September that was likely related to missteps by its much bigger rival, Unity.

It is actually the third most used game engine on Itch.io at the time of writing, having overtaken GameMaker, Unreal, and RPG Maker in popularity in recent years. Where before Godot was primarily used by indie developers, these days it has been put to use by companies including Sega – for 2021's Sonic Colors: Ultimate – and even electric vehicle giant Tesla, which has used it for animations on its mobile app.

"While Unity did a lot of quality PR for Godot, it isn't fair to say that it's the sole reason for Godot's increased popularity in 2023"Tom Coxon, Bytten Games

Godot started its life in 2007, the pet project of Argentinian developers Juan "reduz" Linietsky and Ariel "punto" Manzur. It didn't launch until 2014, however, and the long term aspect of the project was one of the reasons for its name, a reference to Samuel Beckett's famous play, Waiting for Godot.

Godot is a free open source engine relying on donations via its Patreon page and its own website. You can learn more about how the donations are used, who Godot's biggest funders are, and even donate yourself, on this page.

Godot uses its own language, GDScript – which you can learn more about below – but it also supports visual scripting, C# and C++. With Godot, you can deploy games on desktop platforms such as Windows, macOS, Linux, UWP, and Haiku, as well as mobile platforms iOS and Android. You can learn more about Godot's features on this page.

Godot has been going from strength to strength these past few years, with the new iteration – Godot 4 – providing better 3D support and a lot of new features.

"Godot's popularity has grown exponentially through 2023," says Tom Coxon, co-game director of Cassette Beasts developer Bytten Games. "In fact, after Unity proposed the runtime fees, so many new donations poured into the Godot Foundation that its funding more than doubled in just a couple of weeks. Anecdotally, I can say I have seen sustained interest in Godot from newbies ever since."

"While Unity did a lot of quality PR for Godot, it isn't fair to say that it's the sole reason for Godot's increased popularity in 2023. The long-awaited 4.0 version of Godot finally arrived with Vulkan and improved 3D support, and W4 Games unveiled [its] console porting middleware. Together, these two developments have annihilated the biggest factors that previously deterred developers from using Godot."

Godot has been going from strength to strength these past few years

What are the advantages of Godot?

  • Godot is versatile

Godot won't limit your creative endeavours, as it's capable of handling almost every project you can think of, developers have told us.

"Godot is an incredibly versatile engine," says Ryan Hewer, Little Red Dog Games CEO. "At present, there's very, very little where I would say 'Godot is not best for that', with the exception of possibly very detailed first and third-person shooters. Godot is advanced enough that I'm comfortable saying that most developers will be bottlenecked by their own skills rather than the tools in front of them."

Bytten's Coxen agrees, adding: "If you don't like how something works in the engine, you have the source code and the power to change it yourself. Even if you don't want to touch source code, you can still use Godot's flexible plugin system to improve your workflow, add new node types, and support for new file formats, for example."

  • Godot excels at 2D games

While it can handle all types of projects, 2D is where Godot clearly reveals its strengths, making it comparable to GameMaker, MonoGame and Construct. Godot actually comes with separate 2D and 3D engines.

"Godot's native measurement is the pixel, which is extraordinarily helpful when designing 2D pixel art games"Shane Sicienski

"Godot shines when it comes to 2D, as that's the side of the engine that has the most users, and that received the most testing as well – when it comes to 2D, I would recommend it to any professional game developer now," says Nathan Lovato, founder of GDQuest, a YouTube channel full of Godot tutorials and a GitHub page for open source Godot projects and plugins.

Fat Gem Games co-founder Shane Sicienski adds that Godot has one advantage over other engines when it comes to building 2D games.

"The native measurement in Godot is the pixel, which is extraordinarily helpful when designing 2D pixel art games. This made Godot much more attractive to us than engines like Unity, which use non-pixel-based measurement systems."

  • Godot has a node-based interface that makes it accessible

Godot has a visual scripting system using blocks that you can connect, making it an accessible tool even for beginners. You can just drag and drop all sorts of information using nodes and scenes. You can learn more about the nodes system on this page and see how to get started with visual scripting here.

"If you ask any professional who's tried the engine, they will tell you about how intuitive the editor and the node system are," Lovato says.

Nathan Lovato's GDQuest is a library of development tutorials and open-source projects

The node structure is actually one of the reasons Little Red Dog Games made the decision to use Godot.

"The tools we were using previously were insufficient with what we wanted to accomplish next with a 2D/3D hybrid game so we started looking for open-source alternatives," Hewer says. "In Godot we found a streamlined, intuitive engine with a node and scene structure that allowed us the flexibility and modularity to structure our future games the way we wanted."

  • Godot's scripting language is intuitive

Godot has its own scripting language – GDScript – inspired by Python, but it also features official support for C# and C++.

"We started creating Primal Light in Python as a hobby project to learn about game development, but as we began to take the project more seriously, we decided to port what we had to a full-fledged engine," Sicienski says. "[Godot] uses a dedicated programming language called GDScript which is very Pythonic, so we felt right at home."

GDScript is more accessible and friendly to novice developers than C# or C++ for example.

"The editor is a Godot game, so you can code plugins the same way you code your games"Nathan Lovato, GDQuest

"With a programming language designed specifically for game developers, you can prototype and write gameplay code quickly," Lovato adds. "Godot has a unique system called GDNative that allows you to use languages like C or C++ to write high-performance game systems, without having to recompile or maintain a custom version of the engine. It also gives you access to third-party languages like Python, Rust, D, or recently TypeScript.

"Another unique aspect of the engine is that the editor is a Godot game, so you can code plugins the same way you code your games. And this gives you a sense of the power of the UI tools in the engine: all the editor, the dockers, tabs, and so on are a showcase of Godot's UI system."

The fact that GDScript is designed specifically for games is also of note, not least because it arguably melds better with game development than other comparable languages.

"GDScript is simultaneously Godot's best feature, and one of its most underrated," Coxon explains. "A lot of developers coming from Unity seem to be under the mistaken impression that C# is the only language for game development, when the reality is that it was designed for desktop applications, not for games. GDScript being built from the ground up for games (and Godot in particular) means it integrates better, and it doesn't have the same issues with garbage collection that Unity devs work so hard to avoid. GDScript might be slower than C#, but for the occasional script where you actually need speed, C++ or C# can still be used!"

Fat Gem Games' Primal Light came out back in July 2020
  • Godot is free and open source

One of the most important advantages of Godot is that it's free and open source, removing what Sicienski describes as the "stress of licenses or subscription fees." Hewer adds that the open-source nature of Godot was an immediate draw for Little Red Dog Games.

"[It] can't be underscored enough – Godot is not an engine that can change terms on developers without their consent, and if there's something you would like to see in Godot, you're completely empowered to build it yourself."

Being able to create proposals for new features or contribute to bug fixes and improvements also appealed to Lovato.

"I work in free software, and I appreciate the openness of open source projects a lot," he says. "Godot's open source nature brings other significant advantages. Access to the source code means that a professional team can optimise the engine for their projects.

"If there's something you would like to see in Godot, you're completely empowered to build it yourself"Ryan Hewer, Little Red Dog

"The companies using Godot contribute bug fixes and new features to the engine and it's quite stable as a result, and development has only gotten faster since the first release. As a professional or as a game development company, you can just get in touch directly with core developers and participate in the program's growth."

The open source nature of Godot also means that the engine's community is safe from the kind of seismic changes proposed by its industry contemporaries.

"I feel secure in knowing that the core Godot devs and the foundation that supports them couldn't do a Unity rug-pull even if they wanted to," Coxon says. "In the bizarre hypothetical world where they tried, the community would just fork the engine and carry on as usual. Nobody holds a monopoly on the engine – that's the strength of open source software."

  • It's easy to recruit Godot developers

If your ambition is to create a game with a team and eventually grow your own studio, you may want to consider how easy it is to find recruits who are experienced in using Godot. Thankfully, Hewer says it's "not difficult at all."

"There's a surplus of extremely skilled Godot devs out there and a shortage of legitimate employers who use Godot in their products," he adds. "While this will no doubt change over time as adoption grows, we've been very lucky to find great people to join our firm among the Godot community."

Little Red Dog's Precipice

What are the disadvantages of Godot?

  • Godot isn't ready for complex 3D projects

As already touched upon, 3D is not historically where Godot shines, as its level design tools and rendering engine are not as powerful as other technology.

"I think Godot doesn't do 3D quite as well as Unity or Unreal," says Benjamin Anderson, creator of the HeartBeast Gamedev Academy. "This is something the main Godot contributors are working on."

This has changed somewhat in recent years; with the release of Godot 4 in March 2023, the engine now supports the Vulkan graphics API meaning that developers have access to a wealth of features, including higher-quality lighting.

"With this overhaul, Godot's 3D support should be comparable to larger engines," Fat Gem Games co-founder Jeff Nixon says.

  • Godot is unproven for large-scale games
"I wouldn't want to build a AAA-scale game in Godot, although I suppose somebody making a AAA game might have the resources to make Godot suitable for that"Tom Coxon, Bytten Games

Godot is coming on leaps and bounds, but Bytten's Coxon argues that the engine isn't yet suited to "large" titles, even saying that he would not want to make a AAA title using the tech.

"I wouldn't call Cassette Beasts a 'large' game, but even in our case we found ourselves blazing a trail multiple times," he says. "Of course, 'unproven' isn't the same as 'incapable'. It takes a few years for improvements in the engine to translate into released games, so perceptions lag behind reality. I wouldn't want to build a AAA-scale game in Godot today, although I suppose somebody making a AAA game might have the resources to make Godot suitable for that."

Some features found in bigger engines like Unity and Unreal have not yet been implemented in Godot. For instance, there's no built-in sprite editor.

"It's entirely possible to do AAA development in Godot, if you've got the capability to do AAA development with anything else," Hewer says.

"Integration of third-party libraries isn't as straightforward as with other, more established engines. Other than that, there has never been a feature that we couldn't implement because we like using Godot, but then again, we're not developing extreme high-visual performance games, so it's unlikely that we'll ever push the engine to its limits the way other developers might."

  • Godot has a small community

As often when dealing with smaller game engines, having a limited community can be an issue. With something as popular as Unreal or Unity, for instance, all of your questions will often be answered on forums already.

"Godot still does not have as many users as the mastodons of the game industry," Lovato says. "It doesn't have the budget of a large tech corporation like Epic Games. Godot is still a bit of an underdog in the game development space.

"I'm part of the people who give support and who make educational resources for Godot and I have to admit that there are not as many resources as you'd find for Unity, that has a much larger user base. But I'd say we've reached a point where there's plenty to get started, and more and more users are beginning to create tutorials."

Hewer adds: "[There's] a meagre offering of assets to draw from. There is a healthy DIY mentality to Godot developers which can be frustrating for novices looking for tutorials to do something where a bounty of tutorials (and asset packs) exist for Unity."

  • Godot doesn't support consoles

Because Godot is an open source project, you can't develop games for consoles with it. The engine would need to be licensed as a company to do so – something that's not on the roadmap for its lead developers.

"If you want to publish your games to consoles, you need to get in touch with a third-party because the licenses of console development tools are not compatible with free software," Lovato explains.

"Since Godot is not a commercial entity, it is unable to provide official console ports"Tom Coxon, Bytten Games

That doesn't mean you can't port your game to consoles though. Suitably, the engine's co-founder, Ariel Manzur, has a company that specialises in porting Godot games to consoles, Lone Wolf Technology. Meanwhile, some veterans of Godot founded W4 Games in 2023, a company whose mission is helping developers bring their projects to consoles.

"Since Godot is not a commercial entity, it is unable to provide official console ports," Coxon says. "For several years now there have been a few options, such as Pineapple Works which port games using their private fork, but with setups like that, it's hard to tell what you will get before you enter that business relationship. W4 Games' console middleware, which is about as close to 'official' console support as you can get, is on the way, but it's still in private beta."

Bytten Games' Cassette Beasts, built in Godot

Advice for new Godot users

  • Get in touch with the Godot community

As is often the case when an engine community is small, there's a close-knit group of people that can help you get started. You'll find all the different ways to reach out to the community on this page.

"My experience has been mainly with the Godot YouTube community and the Godot Discord," Anderson says. "Both have been very helpful to me. Some people like the Unity docs more than Godot's, but I've actually had an easier time navigating the Godot docs and figuring out stuff through them."

"There's something about being a small, often-overlooked engine that makes Godot devs a very tight community"Ryan Hewer, Little Red Dog

Nixon points out that the helpful community is one of the principal reasons Fat Gem Games loves the engine.

"We regularly ask questions on the official Godot Q&A site, as well as the Godot Discord and Reddit. These channels tend to produce better answers for Godot-specific questions than the Game Development Stack Exchange.

"The lead developers have also been personally friendly and helpful in showing us support and highlighting our game, which we could not envision happening had we been a small developer making our game in Unity or Unreal. There's a sense that the devs and community at large are genuinely happy we're utilising their engine to create our passion project."

Hewer adds: "There's something about being a small, often-overlooked engine that makes Godot devs a very tight community, possibly because we're our own best cheerleaders."

  • Get comfortable with Godot's source code

Given that Godot is less popular and younger than other game engines, developers often have to solve their own problems when it comes to the tech.

"The documentation for Godot is generally pretty good, but my biggest leaps in understanding of the engine have come from reading source code," Coxon says. "This has got me out of several tight corners when I've been stuck on bugs and performance issues."

He adds that it's important to be engaged with the community to help improve Godot as an engine for everyone.

"Don't forget to contribute back," Coxon says. "Even if you can't code C++, learn how to build the engine, how to report bugs, and how to apply pull requests, so that you can provide feedback to other developers. User contributions are how open source software improves. Unlike a lot of other open source projects, all of Godot's users are developers, so we're all able to help in some way."

Godot uses its own scripting language inspired by Python, GDScript
  • Try it: Godot is small and there are resources to get started

The engine itself is very small and boots quickly, so the best thing to do if you want to see if Godot is for you is to try it – you can find it on Steam, Itch.io, Epic Games Store, or on the engine's site.

"You only need to download the engine, that takes like [90] megabytes," Lovato says. "Double-click on the executable, and you can use it instantly: you don't need to install anything. There's also a plug-and-play mentality to Godot, where you can fit everything you need on a small USB stick and you're good to go.

"With the fantastic engines that we have access to nowadays, part of the choice boils down to personal taste. Even as a contributor to the Godot engine, I still love other tools, and see that we have several feature-packed options. That's why I recommend trying different engines to see what is best for you. [There's] a step-by-step Getting Started guide in the official manual."

"Consolidation around a small number of for-profit entities is not healthy for business and not healthy for learning programming either"Ryan Hewer

GDQuest has also put together two free curated learning paths to begin with Godot, one for programming beginners and hobbyists and one for experienced developers. With these, you can get started hands-on, test the engine, and see if it's a good fit for you.

Hewer concludes: "I see young people everyday with this misguided idea that Unity and Unreal are the only two engines worth learning, and this completely ignores the fact that the gamedev ecosystem is huge, diverse and that games are made with a wide variety of both proprietary and public engines.

"Consolidation around a small number of for-profit entities is not healthy for business and not healthy for learning programming either. Godot doesn't compete with other engines because it's not structured for profit, so our interest in encouraging developers to try it out stems from both a desire to dispel myths about gamedev, and to see growth in the number of people actively working to improve something that will always be free for everyone.

"I also would encourage devs to look at GameMaker, MonoGame, and other tools while they're at it. Engines don't define the success of your game, so find an engine that does what you need it to do and is comfortable and intuitive for you to work with."

Our in-depth guides on all the major game engines can help you find the best technology for your game – head to this page to see all the engines we already covered, which we strive to keep updated. If you're eyeing the most popular game engines, you can jump to our Unreal guide right away, or read more about Unity here.

Additional reporting by Alex Calvin.

Related topics
Author
Marie Dealessandri avatar

Marie Dealessandri

Deputy Editor

Marie Dealessandri joined GamesIndustry.biz in 2019 to head its Academy section. A journalist since 2012, she started in games in 2016 at B2B magazine MCV. She can be found (rarely) tweeting @mariedeal, usually on a loop about Baldur’s Gate and the Dead Cells soundtrack. GI resident Moomins expert.