サーバーサイドBlenderを作るにあたりメモ

pythonスクリプトの実行方法

blender --background --python render.py

MacOSXの場合

open -a blender.app --args --background --python render.py

blenderのpythonモジュールのビルド方法

Blenderのダウンロード

blender本家のサイトからblenderのソースコードを持ってくる

Blender Git Gitのリポジトリからsubmoduleも一緒にcloneするにはこうする(--recursive をつける)

git clone https://git.blender.org/blender.git --recursive

Blenderのビルド

Macの場合

ここを参考にビルドしていく

cmakeのインストール
brew install cmake
Download Sources and Libraries
cd blender-source-code-project/
make update
Build
cd blender-source-code-project/
make

※ Updateも同じ 詳しくはドキュメント参照

参考