Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hughperkins/blender-tips
blender-tips
https://github.com/hughperkins/blender-tips
Last synced: 20 days ago
JSON representation
blender-tips
- Host: GitHub
- URL: https://github.com/hughperkins/blender-tips
- Owner: hughperkins
- License: mit
- Created: 2024-02-08T09:28:57.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-02-08T10:58:36.000Z (9 months ago)
- Last Synced: 2024-02-09T10:36:59.889Z (9 months ago)
- Language: Python
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# blender-tips
blender-tips# Bake fluid on commandline:
```
/Applications/Blender.app/Contents/MacOS/Blender --background ~/BlenderFiles/test_render1.blend --python bake.py
```
(`bake.py` is in this repo)# Render frame on commandline:
```
/Applications/Blender.app/Contents/MacOS/Blender --background ~/BlenderFiles/test_render1.blend -o './feb08a####.png' -f 2
```
(Note that `-o` MUST precede the `-f` ...)# Render animation on commandline:
```
/Applications/Blender.app/Contents/MacOS/Blender --background ~/BlenderFiles/test_render1.blend -o './feb08a####.png' -s 1 -e 5 -a
```
Where:
- `-s` is start frame
- `-e` is end frame (inclusive)
- `-a` says to render animation