Search icon CANCEL
Subscription
0
Cart icon
Cart
Close icon
You have no products in your basket yet
Save more on your purchases!
Savings automatically calculated. No voucher code required
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Learning GDScript by Developing a Game with Godot 4

You're reading from  Learning GDScript by Developing a Game with Godot 4

Product type Book
Published in May 2024
Publisher Packt
ISBN-13 9781804616987
Pages 378 pages
Edition 1st Edition
Languages
Concepts
Author (1):
Sander Vanhove Sander Vanhove
Profile icon Sander Vanhove
Toc

Table of Contents (22) Chapters close

Preface 1. Part 1:Learning How to Program
2. Chapter 1: Setting Up the Environment 3. Chapter 2: Getting Familiar with Variables and Control Flow 4. Chapter 3: Grouping Information in Arrays, Loops, and Dictionaries 5. Chapter 4: Bringing Structure with Methods and Classes 6. Chapter 5: How and Why to Keep Your Code Clean 7. Part 2: Making a Game in Godot Engine
8. Chapter 6: Creating a World of Your Own in Godot 9. Chapter 7: Making the Character Move 10. Chapter 8: Splitting and Reusing Scenes 11. Chapter 9: Cameras, Collisions, and Collectibles 12. Chapter 10: Creating Menus, Making Enemies, and Using Autoloads 13. Chapter 11: Playing Together with Multiplayer 14. Part 3: Deepening Our Knowledge
15. Chapter 12: Exporting to Multiple Platforms 16. Chapter 13: OOP Continued and Advanced Topics 17. Chapter 14: Advanced Programming Patterns 18. Chapter 15: Using the File System 19. Chapter 16: What Next? 20. Index 21. Other Books You May Enjoy

Conventions used

There are a number of text conventions used throughout this book.

Code in text: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: “In Chapter 1, we learned to write code with the _ready method of a node.”

A block of code is set as follows:

func deal_damage(amount: float) -> void:
   player_health -= amount
func heal(amount: float) -> void:
   player_health += amount

When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:

func minimum(number1, number2):
   if number1 < number2:
      return number1
   else:
      return number2

Any command-line input or output is written as follows:

unzip Godot_v4.2.1-stable_linux.x86_64.zip -d Godot

Bold: Indicates a new term, an important word, or words that you see onscreen. For instance, words in menus or dialog boxes appear in bold. Here is an example: “You can access the user:// folder for a given project by opening up the Project menu and choosing Open User Data Folder.”

Containers

We call an array a container because we can store and retrieve pieces of data of other data types within them, like integers, strings, booleans, and such. An array contains other data.

Containers structure other data so it is easier to work with.

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime