Part 1: Installing Godot 4 & Setting Up Your First Project

Welcome to the Godot 4 Fundamentals Series! If you’ve ever dreamt of building your own digital worlds but felt overwhelmed by the complexity of modern game engines, you’re in the right place. We’re going to build a complete 2D platformer together, and we’re starting from the absolute beginning.
Reserved for AdSense Revenue
The Workshop Metaphor
Before we touch any code, think of a game engine like a carpenter’s workshop. You have your saws (rendering engine), your hammers (physics), and your blueprints (scripting). Some workshops are massive, expensive, and require a 500-page manual just to turn on the lights.
Godot is different. It’s like a community-built workshop that is incredibly light, free to use, and focused on helping you build things quickly without getting in your way.
Downloading the Engine
Godot is unique because it doesn’t require a “launcher” or a massive installation process. It’s a single executable file that you can even run off a USB stick.
- Go to the official Godot Engine website.
- Click the Download button.
- You will see two main choices: Godot Engine and Godot Engine - .NET.
Pro-Tip: Unless you are already a seasoned C# developer, choose the Standard version. We will be using GDScript for this series. It’s a language designed specifically for game development, and it feels a lot like Python—clean, readable, and fast to write.
Setting Up Your First Project
Once you’ve extracted the ZIP file and launched Godot, you’ll be greeted by the Project Manager. This is where your library of future games will live.
- Click New Project on the right sidebar.
- Name your project
My First Platformer. - Create a dedicated folder for it. (I recommend a
GodotProjectsfolder in your Documents). - The Renderer Choice: You’ll see “Forward+”, “Mobile”, and “Compatibility”.
- Forward+ is for high-end desktop games.
- Mobile is optimized for… well, mobile.
- Compatibility is for older hardware or web games.
Note: For this 2D platformer, any of these will work, but Forward+ will give us the most flexibility with modern lighting effects later on.
- Click Create & Edit.
Welcome to the Editor
If your screen just filled up with buttons, tabs, and a large empty gray space—don’t panic! That empty space is your canvas. In the next part, we’ll learn how to navigate this interface and create our very first 2D scene.
Key Takeaways
- Lightweight: Godot is a single executable with no installation required.
- GDScript vs .NET: Stick to GDScript for a smoother learning curve.
- Renderer: Choose Forward+ for maximum features on desktop.
- Organization: Always keep your projects in a dedicated, easy-to-find folder.
See you in Part 2: Creating Your First 2D Scene!
Reserved for AdSense Revenue
Join the Veigatec Dev Loop
Get the latest Godot, Flutter, and Web Development engineering insights delivered straight to your inbox. No fluff, just code.
We respect your privacy. Unsubscribe at any time.

