Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Free Learning
Arrow right icon
Godot 4 Game Development Projects
Godot 4 Game Development Projects

Godot 4 Game Development Projects: Build five cross-platform 2D and 3D games using one of the most powerful open source game engines , Second Edition

Arrow left icon
Profile Icon Chris Bradfield
Arrow right icon
€18.99 per month
Full star icon Full star icon Full star icon Full star icon Empty star icon 4 (24 Ratings)
Paperback Aug 2023 264 pages 2nd Edition
eBook
€8.99 €26.99
Paperback
€33.99
Subscription
Free Trial
Renews at €18.99p/m
Arrow left icon
Profile Icon Chris Bradfield
Arrow right icon
€18.99 per month
Full star icon Full star icon Full star icon Full star icon Empty star icon 4 (24 Ratings)
Paperback Aug 2023 264 pages 2nd Edition
eBook
€8.99 €26.99
Paperback
€33.99
Subscription
Free Trial
Renews at €18.99p/m
eBook
€8.99 €26.99
Paperback
€33.99
Subscription
Free Trial
Renews at €18.99p/m

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing
Table of content icon View table of contents Preview book icon Preview Book

Godot 4 Game Development Projects

Introduction to Godot 4.0

Whether it’s a career goal or a recreational hobby, game development is a fun and rewarding endeavor. There’s never been a better time to get started in game development. Modern programming languages and tools have made it easier than ever to build high-quality games and distribute them to the world. If you’re reading this book, then you’ve set your feet on the path to making the game(s) of your dreams.

This book is an introduction to the Godot Game Engine and its new 4.0 version, which was released in 2023. Godot 4.0 has a large number of new features and capabilities that make it a strong alternative to expensive commercial game engines. For beginners, it offers a friendly way to learn game development fundamentals. For more experienced developers, Godot is a powerful, customizable, and open toolkit for bringing your visions to life.

This book takes a project-based approach that will introduce you to the fundamentals of...

General advice

This section contains some general advice to readers, based on the author’s experience as a teacher and lecturer. Keep these tips in mind as you work through the book, especially if you’re very new to programming.

Try to follow the projects in the book in order. Later chapters may build on topics that were introduced in earlier chapters, where they are explained in more detail. When you encounter something that you don’t remember, go back and review that topic in the earlier chapter. No one is timing you, and there’s no prize for finishing the book quickly.

There is a lot of material to absorb here. Don’t feel discouraged if you don’t get it at first. The goal is not to become an expert in game development overnight – that’s just not possible. Just like with any other skill – carpentry or a musical instrument, for example – it takes years of practice and study to develop proficiency. Repetition...

What is a game engine?

Game development is complex and involves a wide variety of knowledge and skills. To build a modern game, you need a great deal of underlying technology before you can make the actual game itself. Imagine that you had to build your computer and write your own operating system before you could even start programming. Game development would be a lot like that if you truly had to start from scratch and make everything that you need.

There are also a number of common needs that every game has. For example, no matter what the game is, it’s going to need to draw things on the screen. If the code to do that has already been written, it makes more sense to reuse it than to create it all over again for every game. That’s where game frameworks and engines come in.

A game framework is a set of libraries with helper code that assists in building the foundational parts of a game. It doesn’t necessarily provide all the pieces, and you may still have...

What is Godot?

Godot is a fully featured modern game engine, providing all of the features described in the previous section and more. It is also completely free and open source, released under the very permissive MIT license. This means there are no fees, no hidden costs, and no royalties to pay on your game’s revenue. Everything you make with Godot 100% belongs to you, which is not the case with many commercial game engines that require an ongoing contractual relationship. For many developers, this is very appealing.

If you’re not familiar with the concept of open source, community-driven development, this may seem strange to you. However, much like the Linux kernel, Firefox browser, and many other very well-known pieces of software, Godot is not developed by a company as a commercial product. Instead, a dedicated community of passionate developers donates their time and expertise to building the engine, testing and fixing bugs, producing documentation, and more...

Downloading Godot

You can download the latest version of Godot by visiting https://godotengine.org/ and clicking Download Latest. This book is written for version 4.0. If the version you download has another number at the end (such as 4.0.3), that’s fine – this just means that it includes updates to version 4.0 that fix bugs or other issues.

On the download page, you will also see a standard version and a .NET version. The .NET version is specially built to be used with the C# programming language. Don’t download this one unless you plan to use C# with Godot. The projects in this book do not use C#.

Figure 1.1: The Godot download page

Figure 1.1: The Godot download page

Unzip the downloaded file, and you’ll have the Godot application. Optionally, you can drag it to your Programs or Applications folder, if you have one. Double-click the application to launch it and you’ll see Godot’s Project Manager window, which you’ll learn about in the...

Overview of the Godot UI

Like most game engines, Godot has a unified development environment. This means that you use the same interface to work on all of the aspects of your game – code, visuals, audio, and so on. This section is an introduction to the interface and its parts. Take note of the terminology used here; it will be used throughout this book when referring to actions you’ll take in the editor window.

Project Manager

The Project Manager window is the first window you’ll see when you open Godot:

Figure 1.3: Project Manager

Figure 1.3: Project Manager

Opening Godot for the first time

The first time you open Godot, you won’t have any projects yet. You’ll see a pop-up window asking if you want to explore official example projects in the Asset Library. Select Cancel, and you’ll see the Project Manager as it appears in the preceding screenshot.

In this window, you can see a list of your existing Godot projects. You can choose...

Learning about nodes and scenes

Nodes are the basic building blocks for creating games in Godot. A node is an object that can give you a variety of specialized game functions. A given type of node might display an image, play an animation, or represent a 3D model. The node contains a collection of properties, allowing you to customize its behavior. Which nodes you add to your project depends on what functionality you need. It’s a modular system designed to give you flexibility in building your game objects.

The nodes you add are organized into a tree structure. In a tree, nodes are added as children of other nodes. A particular node can have any number of children, but only one parent node. When a group of nodes is collected into a tree, it is called a scene:

Figure 1.10: Nodes arranged in a tree

Figure 1.10: Nodes arranged in a tree

Scenes in Godot are typically used to create and organize the various game objects in your project. You might have a player scene that contains all...

Scripting in Godot

Godot provides two official languages for scripting nodes: GDScript and C#. GDScript is the dedicated built-in language, providing the tightest integration with the engine, and is the most straightforward to use. For those that are already familiar or proficient with C#, you can download a version that supports that language.

In addition to the two supported languages, Godot itself is written in C++, and you can get even more performance and control by extending the engine’s functionality directly. See Additional topics in Chapter 7 for information on using other languages and extending the engine.

All the games in this book will use GDScript. For the majority of projects, GDScript is the best choice of language. It is tightly integrated with Godot’s Application Programming Interface (API) and is designed for rapid development.

About GDScript

GDScript’s syntax is very closely modeled on the Python language. If you are familiar with...

Summary

In this chapter, you were introduced to the concept of a game engine in general and to Godot in particular. Most importantly, you downloaded Godot and launched it!

You learned some important vocabulary that will be used throughout this book when referring to various parts of the Godot editor window. You also learned about the concepts of nodes and scenes, which are the fundamental building blocks of Godot.

You also received some advice on how to approach the projects in this book and game development in general. If you ever find yourself getting frustrated as you are working through this book, go back and reread the General advice section. There’s a lot to learn, and it’s OK if it doesn’t all make sense the first time. You’ll make five different games throughout this book, and each one will help you understand things a little bit more.

You’re ready to move on to the next chapter, where you’ll start building your first game...

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Master the art of developing cross-platform games
  • Harness the power of Godot's node and scene system to design robust and reusable game objects
  • Effortlessly and effectively integrate Blender into Godot to create powerful 3D games
  • Purchase of the print or Kindle book includes a free PDF eBook

Description

Godot 4.0 is one of the most sought-after open-source game engines, and if you’re enthusiastic about exploring its features, then this book is for you. Written by an author with over twenty-five years of experience, the Godot 4 Game Development Projects introduces the Godot game engine and its feature-rich 4.0 version. With an array of new capabilities, Godot 4.0 is a strong alternative to expensive commercial game engines. If you’re a beginner, this book will help you learn game development techniques, while experienced developers will understand how to use this powerful and customizable tool to bring their creative visions to life. This updated edition consists of five projects with an emphasis on the 3D capabilities of the engine that will help you build on your foundation-level skills through small-scale game projects. Along the way, you’ll gain insights into Godot’s inner workings and discover game development techniques that you can apply to your projects. Using a step-by-step approach and practical examples, this book covers everything from the absolute basics to sophisticated game physics, animations, and much more. By the time you complete the final project, you’ll have a strong foundation for future success with Godot 4.0 and you’ll be well on your way to developing a variety of games.

Who is this book for?

This book is for game developers at all levels, from beginners seeking an introduction to experienced programmers aiming to delve into the intricacies of Godot Engine 4.0. It is a valuable resource for newcomers and a treasure trove of insights for experienced developers. Prior programming experience is a prerequisite.

What you will learn

  • Get acquainted with the Godot game engine and editor if you're a beginner
  • Explore the new features of Godot 4.0
  • Build games in 2D and 3D using design and coding best practices
  • Use Godot's node and scene system to design robust, reusable game objects
  • Use GDScript, Godot's built-in scripting language, to create complex game systems
  • Implement user interfaces to display information
  • Create visual effects to spice up your game
  • Publish your game to desktop and mobile platforms

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Aug 11, 2023
Length: 264 pages
Edition : 2nd
Language : English
ISBN-13 : 9781804610404
Languages :
Tools :

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing

Product Details

Publication date : Aug 11, 2023
Length: 264 pages
Edition : 2nd
Language : English
ISBN-13 : 9781804610404
Languages :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
€18.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
€189.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts
€264.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total 105.97
Godot 4 Game Development Projects
€33.99
The Essential Guide to Creating Multiplayer Games with Godot 4.0
€37.99
Godot 4 Game Development Cookbook
€33.99
Total 105.97 Stars icon
Banner background image

Table of Contents

9 Chapters
Chapter 1: Introduction to Godot 4.0 Chevron down icon Chevron up icon
Chapter 2: Coin Dash – Build Your First 2D Game Chevron down icon Chevron up icon
Chapter 3: Space Rocks: Build a 2D Arcade Classic with Physics Chevron down icon Chevron up icon
Chapter 4: Jungle Jump – Running and Jumping in a 2D Platformer Chevron down icon Chevron up icon
Chapter 5: 3D Minigolf: Dive into 3D by Building a Minigolf Course Chevron down icon Chevron up icon
Chapter 6: Infinite Flyer Chevron down icon Chevron up icon
Chapter 7: Next Steps and Additional Resources Chevron down icon Chevron up icon
Index Chevron down icon Chevron up icon
Other Books You May Enjoy Chevron down icon Chevron up icon

Customer reviews

Top Reviews
Rating distribution
Full star icon Full star icon Full star icon Full star icon Empty star icon 4
(24 Ratings)
5 star 50%
4 star 25%
3 star 8.3%
2 star 12.5%
1 star 4.2%
Filter icon Filter
Top Reviews

Filter reviews by




Rick Nov 29, 2023
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Really productive book, each game expanding the Godot usage, with fun along the way. Very few omissions to confuse, you quickly find your feet to start using the software confidently
Feefo Verified review Feefo
Jacob Aug 11, 2023
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Godot 4 is a powerful software, and while it's very accessible to the new or average developer, it's often hard to know where to start when learning it for the first time. While there are MANY tutorials out there to use when learning Godot 4, many of them don't often do a very good job at explaining the *why* when we follow a certain step or insert certain code, making the transition between following project guides to making your very own project very difficult. However, this book isn't your average tutorial, and after finishing this book, I guarantee that you will feel fully capable of creating your very own project without the use of pre-made instructions.In many of the game engine tutorials that I've read or watched in the past, one common trait among all of them was how they often just gave you instructions to follow with little-to-no explanation as to *why* you need to follow that step, often leading to confusion and frustration in the future. In this book, almost every single step of each project tutorial also provides a detailed, yet brief, explanation as to why we are including that step. Not only does this clear up any confusion as to what the author is doing or why they are doing this, but these explanations also expands your creativity, allowing you to visualize different scenarios in the future where this feature might come in handy. In addition, this book also touches on many subjects that most other tutorials or guides fail to cover, such has how to properly use documentation for finding more information about the Godot engine and how to use apply version control to better manage your project files.Overall, this book hasn't disappointed me in the slightest, and I praise the author who wrote it. It's obvious that there was much care and detail that went into making this book, and as a result, we are left with a perfect guide that can get any developer started on their Godot 4 journey.
Amazon Verified review Amazon
ROBERTO HILSACA Sep 24, 2023
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This introduction is worth it for either new into game development or experienced developers looking to switch platform. As Unity has changed its fees plenty of developers like me are looking to switch into a similar platform and this is the best choice for 2D or not to heavy 3D games. While reading over I came across the great starting point which guides me from preparing the project and setting up the game according to what I need for making sure it works on multiple platforms. Glad to know that Godot also has its own IDE and make sure that when reading over to understand the nodes which I am not a big fan but can simplify development for beginners.
Amazon Verified review Amazon
Roger Andersen Jan 19, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
simple and easy introduction to godot and gdscript.
Amazon Verified review Amazon
PK Bradfield Sep 14, 2023
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This is a great book for beginners to use to follow along on projects that will give them a helpful introduction to programming in Godot 4. This 2nd edition is a fantastic update to the original edition.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

What is included in a Packt subscription? Chevron down icon Chevron up icon

A subscription provides you with full access to view all Packt and licnesed content online, this includes exclusive access to Early Access titles. Depending on the tier chosen you can also earn credits and discounts to use for owning content

How can I cancel my subscription? Chevron down icon Chevron up icon

To cancel your subscription with us simply go to the account page - found in the top right of the page or at https://subscription.packtpub.com/my-account/subscription - From here you will see the ‘cancel subscription’ button in the grey box with your subscription information in.

What are credits? Chevron down icon Chevron up icon

Credits can be earned from reading 40 section of any title within the payment cycle - a month starting from the day of subscription payment. You also earn a Credit every month if you subscribe to our annual or 18 month plans. Credits can be used to buy books DRM free, the same way that you would pay for a book. Your credits can be found in the subscription homepage - subscription.packtpub.com - clicking on ‘the my’ library dropdown and selecting ‘credits’.

What happens if an Early Access Course is cancelled? Chevron down icon Chevron up icon

Projects are rarely cancelled, but sometimes it's unavoidable. If an Early Access course is cancelled or excessively delayed, you can exchange your purchase for another course. For further details, please contact us here.

Where can I send feedback about an Early Access title? Chevron down icon Chevron up icon

If you have any feedback about the product you're reading, or Early Access in general, then please fill out a contact form here and we'll make sure the feedback gets to the right team. 

Can I download the code files for Early Access titles? Chevron down icon Chevron up icon

We try to ensure that all books in Early Access have code available to use, download, and fork on GitHub. This helps us be more agile in the development of the book, and helps keep the often changing code base of new versions and new technologies as up to date as possible. Unfortunately, however, there will be rare cases when it is not possible for us to have downloadable code samples available until publication.

When we publish the book, the code files will also be available to download from the Packt website.

How accurate is the publication date? Chevron down icon Chevron up icon

The publication date is as accurate as we can be at any point in the project. Unfortunately, delays can happen. Often those delays are out of our control, such as changes to the technology code base or delays in the tech release. We do our best to give you an accurate estimate of the publication date at any given time, and as more chapters are delivered, the more accurate the delivery date will become.

How will I know when new chapters are ready? Chevron down icon Chevron up icon

We'll let you know every time there has been an update to a course that you've bought in Early Access. You'll get an email to let you know there has been a new chapter, or a change to a previous chapter. The new chapters are automatically added to your account, so you can also check back there any time you're ready and download or read them online.

I am a Packt subscriber, do I get Early Access? Chevron down icon Chevron up icon

Yes, all Early Access content is fully available through your subscription. You will need to have a paid for or active trial subscription in order to access all titles.

How is Early Access delivered? Chevron down icon Chevron up icon

Early Access is currently only available as a PDF or through our online reader. As we make changes or add new chapters, the files in your Packt account will be updated so you can download them again or view them online immediately.

How do I buy Early Access content? Chevron down icon Chevron up icon

Early Access is a way of us getting our content to you quicker, but the method of buying the Early Access course is still the same. Just find the course you want to buy, go through the check-out steps, and you’ll get a confirmation email from us with information and a link to the relevant Early Access courses.

What is Early Access? Chevron down icon Chevron up icon

Keeping up to date with the latest technology is difficult; new versions, new frameworks, new techniques. This feature gives you a head-start to our content, as it's being created. With Early Access you'll receive each chapter as it's written, and get regular updates throughout the product's development, as well as the final course as soon as it's ready.We created Early Access as a means of giving you the information you need, as soon as it's available. As we go through the process of developing a course, 99% of it can be ready but we can't publish until that last 1% falls in to place. Early Access helps to unlock the potential of our content early, to help you start your learning when you need it most. You not only get access to every chapter as it's delivered, edited, and updated, but you'll also get the finalized, DRM-free product to download in any format you want when it's published. As a member of Packt, you'll also be eligible for our exclusive offers, including a free course every day, and discounts on new and popular titles.