Setting up the project

    Launch Godot and create a new project.

    GDScript   C#GDNative C++

    Download dodge_assets.zip. The archive contains the images and sounds you’ll be using to make the game. Extract the archive and move the and fonts/ directories to your project’s directory.

    Download . The archive contains the images and sounds you’ll be using to make the game. Extract the archive and move the art/ and fonts/ directories to your project’s directory.

    Download dodge_assets_with_gdnative.zip. The archive contains the images and sounds you’ll be using to make the game. It also contains a starter GDNative project including a SConstruct file, a file, a player.gdns file, and an entry.cpp file.

    Ensure that you have the required dependencies to use GDNative C++. You need a C++ compiler such as GCC or Clang or MSVC that supports C++14. On Windows you can download Visual Studio 2019 and select the C++ workload. You also need SCons to use the build system (the SConstruct file). Then you need to and place them in your project.

    Your project folder should look like this.

    ../../_images/folder-content.png

    This game is designed for portrait mode, so we need to adjust the size of the game window. Click on Project -> Project Settings to open the project settings window and in the left column, open the Display -> Window tab. There, set “Width” to 480 and “Height” to 720.

    Also, scroll down to the bottom of the section and, under the “Stretch” options, set to “2d” and Aspect to “keep”. This ensures that the game scales consistently on different sized screens.

    In this project, we will make 3 independent scenes: Player, Mob, and HUD, which we will combine into the game’s scene.

    In a larger project, it might be useful to create folders to hold the various scenes and their scripts, but for this relatively small game, you can save your scenes and scripts in the project’s root folder, identified by res://. You can see your project folders in the FileSystem dock in the lower left corner:

    ../../_images/filesystem_dock.png