add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

24
pages.zh/common/godot.md Normal file
View File

@@ -0,0 +1,24 @@
# Godot
> 一个开源的2D和3D游戏引擎。
> 更多信息:<https://godotengine.org/>
- 如果当前目录包含 `project.godot` 文件,则运行项目;否则打开项目管理器:
`godot`
- 编辑项目(当前目录必须包含 `project.godot` 文件):
`godot -e`
- 即使当前目录包含 `project.godot` 文件,也打开项目管理器:
`godot -p`
- 为给定的导出预设导出项目(预设必须在项目中定义):
`godot --export {{preset}} {{output_path}}`
- 执行独立的 GDScript 文件(脚本必须继承自 `SceneTree``MainLoop`
`godot -s {{script.gd}}`