glTF-Blender-IO

(★ 1,652)

Blender glTF 2.0 importer and exporter

File Explorer

  • .gitattributes
  • .gitignore
  • .project
  • .pydevproject
  • AUTHORS.txt
  • CODE_OF_CONDUCT.md
  • DEBUGGING.md
  • LICENSE.txt
  • pyproject.toml
  • README.md
  • Technical.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

blender

View Details ▼

Command-line interface to the Blender 3D computer graphics application.
Arguments are executed in the order they are given.

blender {{[-b|--background]}} {{path/to/file.blend}} {{[-a|--render-anim]}}

Render all frames of an animation in the background, without loading the UI (output is saved to `/tmp`):

blender {{[-b|--background]}} {{path/to/file.blend}} {{[-o|--render-output]}} //{{render/frame_###.png}} {{[-a|--render-anim]}}

Render an animation using a specific image naming pattern, in a path relative (`//`) to the `.blend` file:

blender {{[-b|--background]}} {{path/to/file.blend}} {{[-o|--render-output]}} /{{path/to/output_directory}} {{[-f|--render-frame]}} {{10}}

Render the 10th frame of an animation as a single image, saved to an existing directory (absolute path):

🔍

yarn

View Details ▼

JavaScript and Node.js package manager alternative.

yarn global add {{module_name}}

Install a module globally:

yarn install

Install all dependencies referenced in the `package.json` file (the `install` is optional):

yarn add {{module_name}}@{{version}}

Install a module and save it as a dependency to the `package.json` file (add `--dev` to save as a dev dependency):

// repository documentation