Table of Contents
Getting Started with GDevelop
GDevelop is a free, open-source, and cross-platform game creation tool that anyone can use to create games without programming skills.
This guide explains how to get up and running with GDevelop.
Step 1: Install GDevelop
GDevelop is available for all major operating systems, including the latest versions of Windows, macOS, and Linux. To download GDevelop, visit gdevelop.io/download.
The installation instructions depend on the operating system.
Windows:
- 1. Double-click on the executable.
- 2. Click on the Next button a few times. This installs GDevelop, launches the app, and adds an icon to the Desktop.
macOS:
- 1. Open the DMG file.
- 2. Drag “GDevelop.app” into the “~/Applications” directory.
Linux (flatpak):
- 1. Open a terminal.
- 2. Follow the command line instrucations at the bottom of the GDevelop Flathub page
Linux (AppImage):
- 1. Open a terminal.
- 2. Make the AppImage file executable by typing
chmod a+x GDevelop*.AppImage
. - 3. Run it:
./GDevelop*.AppImage
(or double click on the file).
Phone, tablets and Chromebooks:
- 1. Open your browser and go to editor.gdevelop.io.
- 2. If you are on Android or on a Chromebook, choose the option to “Add to Homescreen”.
Step 2: Create a new project
- Launch GDevelop.
- Either click a Template as a starting point, or click Create a Blank Project to start from scratch.
- Choose a location and name for the project.
Step 3: Preview the game
If a project has at least one scene, which all of the starter projects do, a Preview button is available via the toolbar. This button launches a preview of the game.
Next step
Depending on your preference, follow one of the two link paths down below.
Wiki path
Begin by reading through the Basic Game Making Concepts wiki page.
Then follow along with the Asteroids Game Example. You'll learn how to create a physics based asteroids game from scratch and discover many of GDevelop's fundamental concepts, such as objects, events, and behaviors.
Video path
Begin with the Official Intro Tutorial Video Series.
Then follow along with Asteroids game example and try to build your own game.