
godot
List of commands for godot:
-
godot:tldr:35e65 godot: Run a project if the current directory contains a `project.godot` file, otherwise open the project manager.$ godottry on your machineexplain this command
-
godot:tldr:8ed08 godot: Edit a project (the current directory must contain a `project.godot` file).$ godot -etry on your machineexplain this command
-
godot:tldr:a430a godot: Export a project for a given export preset (the preset must be defined in the project).$ godot --export ${preset} ${output_path}try on your machineexplain this command
-
godot:tldr:baf3a godot: Execute a standalone GDScript file (the script must inherit from `SceneTree` or `MainLoop`).$ godot -s ${script-gd}try on your machineexplain this command
-
godot:tldr:dd49e godot: Open the project manager even if the current directory contains a `project.godot` file.$ godot -ptry on your machineexplain this command