Godot Game Engine - Create 2D/3D Games | Online Free DevTools by Hexmos
Create games with Godot game engine. Build 2D and 3D games, export for multiple platforms, and use GDScript. Free online tool, no registration required.
godot
An open source 2D and 3D game engine. More information: https://docs.godotengine.org/en/latest/tutorials/editor/command_line_tutorial.html.
- Run a project if the current directory contains a
project.godotfile, otherwise open the project manager:
godot
- Edit a project (the current directory must contain a
project.godotfile):
godot {{[-e|--editor]}}
- Open the project manager even if the current directory contains a
project.godotfile:
godot {{[-p|--project-manager]}}
- Export a project for release using a given export preset (the preset must be defined in the project):
godot --export-release {{preset}} {{output_path}}
- Execute a standalone GDScript file (the script must inherit from
SceneTreeorMainLoop):
godot {{[-s|--script]}} {{script.gd}}
