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

View File

@@ -0,0 +1,33 @@
# Blender
> Blender 3D计算机图形应用程序的命令行界面。
> 参数按给定顺序执行。
> 更多信息:<https://docs.blender.org/manual/en/latest/advanced/command_line/arguments.html>。
- 在后台渲染动画的所有帧,不加载用户界面(输出保存到`/tmp`
`blender --background {{path/to/file.blend}} --render-anim`
- 使用特定的图像命名模式渲染动画,路径相对于.blend文件`//`
`blender --background {{path/to/file.blend}} --render-output //{{render/frame_###.png}} --render-anim`
- 将动画的第十帧渲染为单个图像,保存到现有目录(绝对路径):
`blender --background {{path/to/file.blend}} --render-output {{/path/to/output_directory}} --render-frame {{10}}`
- 将动画的倒数第二帧渲染为JPEG图像保存到现有目录相对路径
`blender --background {{path/to/file.blend}} --render-output //{{output_directory}} --render-frame {{JPEG}} --render-frame {{-2}}`
- 渲染特定场景的动画从第10帧开始到第500帧结束
`blender --background {{path/to/file.blend}} --scene {{scene_name}} --frame-start {{10}} --frame-end {{500}} --render-anim`
- 以特定分辨率渲染动画通过传递Python表达式
`blender --background {{path/to/file.blend}} --python-expr '{{import bpy; bpy.data.scenes[0].render.resolution_percentage = 25}}' --render-anim`
- 在终端中启动交互式Blender会话并打开Python控制台启动后执行`import bpy`
`blender --background --python-console`