Command line tutorial¶
Some developers like using the command line extensively. Redot is designed to be friendly to them, so here are the steps for working entirely from the command line. Given the engine relies on almost no external libraries, initialization times are pretty fast, making it suitable for this workflow.
Note
On Windows and Linux, you can run a Redot binary in a terminal by specifying its relative or absolute path.
On macOS, the process is different due to Redot being contained within an
.app
bundle (which is a folder, not a file). To run a Redot binary
from a terminal on macOS, you have to cd
to the folder where the Redot
application bundle is located, then run Godot.app/Contents/MacOS/Godot
followed by any command line arguments. If you've renamed the application
bundle from Godot
to another name, make sure to edit this command line
accordingly.
Command line reference¶
General options
Command |
Description |
|
Display the list of command line options. |
|
Display the version string. |
|
Use verbose stdout mode. |
|
Quiet mode, silences stdout messages. Errors are still displayed. |
Run options
Command |
Description |
|
Start the editor instead of running the scene (tools must be enabled). |
|
Start the project manager, even if a project is auto-detected (tools must be enabled). |
|
Quit after the first iteration. |
|
Use a specific locale (<locale> being a two-letter code). See Locales for more details. |
|
Path to a project (<directory> must contain a 'project.godot' file). |
|
Scan folders upwards for 'project.godot' file. |
|
Path to a pack (.pck) file to load. |
|
Render thread mode ('unsafe', 'safe', 'separate'). See Thread Model for more details. |
|
Remote filesystem ( |
|
Audio driver. Use |
|
Video driver. Use |
Display options
Command |
Description |
|
Request fullscreen mode. |
|
Request a maximized window. |
|
Request windowed mode. |
|
Request an always-on-top window. |
|
Request window resolution. |
|
Request window position. |
|
Force low-DPI mode (macOS and Windows only). |
|
Run with invisible window. Useful together with |
Debug options
Note
Debug options are only available in the editor and debug export templates
(they require debug
or release_debug
build targets, see
Target for more details).
Command |
Description |
|
Debug (local stdout debugger). |
|
Breakpoint list as source::line comma-separated pairs, no spaces (use %%20 instead). |
|
Enable profiling in the script debugger. |
|
Remote debug ( |
|
Show collision shapes when running the scene. |
|
Show navigation polygons when running the scene. |
|
Simulate high CPU load (delay each frame by <ms> milliseconds). |
|
Force time scale (higher values are faster, 1.0 is normal speed). |
|
Disable render loop so rendering only occurs when called explicitly from script. |
|
Disable crash handler when supported by the platform code. |
|
Force a fixed number of frames per second. This setting disables real-time synchronization. |
|
Print the frames per second to the stdout. |
Standalone tools
Command |
Description |
|
Run a script. |
|
Only parse for errors and quit (use with |
|
Export the project using the given export target. Export only main pack if path ends with .pck or .zip (tools must be enabled). |
|
Like |
|
Dump the engine API reference to the given <path> in XML format, merging if existing files are found (tools must be enabled). |
|
Disallow dumping the base types (used with |
|
Build the scripting solutions (e.g. for C# projects, tools must be enabled). |
|
Generate JSON dump of the Redot API for GDNative bindings (tools must be enabled). |
|
Run a unit test. Use |
|
Like |
Path¶
It is recommended that your Redot binary be in your PATH environment
variable, so it can be executed easily from any place by typing
redot
. You can do so on Linux by placing the Redot binary in
/usr/local/bin
and making sure it is called redot
.
Setting the project path¶
Depending on where your Redot binary is located and what your current working directory is, you may need to set the path to your project for any of the following commands to work correctly.
This can be done by giving the path to the project.godot
file
of your project as either the first argument, like this:
redot path_to_your_project/project.godot [other] [commands] [and] [args]
Or by using the --path
argument:
redot --path path_to_your_project [other] [commands] [and] [args]
For example, the full command for exporting your game (as explained below) might look like this:
redot --path path_to_your_project --export my_export_preset_name game.exe
Creating a project¶
Creating a project from the command line can be done by navigating the shell to the desired place and making a project.godot file.
mkdir newgame
cd newgame
touch project.godot
The project can now be opened with Redot.
Running the editor¶
Running the editor is done by executing Redot with the -e
flag. This
must be done from within the project directory or a subdirectory,
otherwise the command is ignored and the project manager appears.
redot -e
If a scene has been created and saved, it can be edited later by running the same code with that scene as argument.
redot -e scene.tscn
Erasing a scene¶
Redot is friends with your filesystem and will not create extra
metadata files. Use rm
to erase a scene file. Make sure nothing
references that scene or else an error will be thrown upon opening.
rm scene.tscn
Running the game¶
To run the game, simply execute Redot within the project directory or subdirectory.
godot
When a specific scene needs to be tested, pass that scene to the command line.
redot scene.tscn
Debugging¶
Catching errors in the command line can be a difficult task because they
just fly by. For this, a command line debugger is provided by adding
-d
. It works for running either the game or a simple scene.
redot -d
redot -d scene.tscn
Exporting¶
Exporting the project from the command line is also supported. This is especially useful for continuous integration setups. The version of Redot that is headless (server build, no video) is ideal for this.
redot --export "Linux/X11" /var/builds/project
redot --export Android /var/builds/project.apk
The preset name must match the name of an export preset defined in the
project's export_presets.cfg
file. If the preset name contains spaces or
special characters (such as "Windows Desktop"), it must be surrounded with quotes.
To export a debug version of the game, use the --export-debug
switch
instead of --export
. Their parameters and usage are the same.
To export only a PCK file, use the --export-pack
option followed by the
preset name and output path, with the file extension, instead of --export
.
The output path extension determines the package's format, either PCK or ZIP.
Warning
When specifying a relative path as the path for --export, --export-debug
or --export-pack, the path will be relative to the directory containing
the project.godot
file, not relative to the current working directory.
Running a script¶
It is possible to run a simple .gd
script from the command line.
This feature is especially useful in large projects, e.g. for batch
conversion of assets or custom import/export.
The script must inherit from SceneTree
or MainLoop
.
Here is a simple sayhello.gd
example of how it works:
#!/usr/bin/env -S redot -s
extends SceneTree
func _init():
print("Hello!")
quit()
And how to run it:
# Prints "Hello!" to standard output.
redot -s sayhello.gd
If no project.godot
exists at the path, current path is assumed to be the
current working directory (unless --path
is specified).
The first line of sayhello.gd
above is commonly referred to as
a shebang. If the Redot binary is in your PATH
as redot
,
it allows you to run the script as follows in modern Linux
distributions, as well as macOS:
# Mark script as executable.
chmod +x sayhello.gd
# Prints "Hello!" to standard output.
./sayhello.gd
If the above doesn't work in your current version of Linux or macOS, you can always have the shebang run Redot straight from where it is located as follows:
#!/usr/bin/redot -s