mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-09 12:15:51 +02:00
godot: add page (#2183)
This commit is contained in:
parent
a1e93718c2
commit
bf5491b2ee
1 changed files with 23 additions and 0 deletions
23
pages/common/godot.md
Normal file
23
pages/common/godot.md
Normal file
|
@ -0,0 +1,23 @@
|
|||
# godot
|
||||
|
||||
> An open source 2D and 3D game engine.
|
||||
|
||||
- Run a project if the current directory contains a `project.godot` file, otherwise open the project manager:
|
||||
|
||||
`godot`
|
||||
|
||||
- Edit a project (the current directory must contain a `project.godot` file):
|
||||
|
||||
`godot -e`
|
||||
|
||||
- Open the project manager even if the current directory contains a `project.godot` file:
|
||||
|
||||
`godot -p`
|
||||
|
||||
- Export a project for a given target (the target must be defined in the project):
|
||||
|
||||
`godot --export {{target}}`
|
||||
|
||||
- Execute a standalone GDScript file:
|
||||
|
||||
`godot -s {{script.gd}}`
|
Loading…
Add table
Reference in a new issue