Blender-3.4 で、自前ビルドが必要だった bpy が pip に来ました。
bpy 3.4.0 is available on PyPi, and can be installed through pip install bpy.
左側に以下のような記述があります。
Requires: Python ==3.11.*
Blenderがその時々で使用しているVersionの python が必要です。
(blender-4.4 => python-3.11)
install
> pip install bpy
numpy のバージョンを下げる
A module that was compiled using NumPy 1.x cannot be run in
NumPy 2.2.4 as it may crash. To support both 1.x and 2.x
versions of NumPy, modules must be compiled with NumPy 2.0.
Some module may need to rebuild instead e.g. with 'pybind11>=2.12'.
> pip install numpy<2.0
使用例
最初はいつもの、Camera
, Cube
, Light
の初期状態です。
import bpy
o = bpy.context.active_object
print(o)
ロードする
blend
bpy.ops.wm.open_mainfile(filepath=BLEND_PATH)
bvh
ret = bpy.ops.import_anim.bvh( # type: ignore
filepath=BVH_PATH,
use_fps_scale=True,
update_scene_duration=True,)
if ret != FINISHED:
raise Exception()
rendering する
EEVEE
import bpy
# bpy.context.scene.render.engine = 'CYCLES' # EEVEE動くようです
bpy.ops.render.render()
bpy.data.images['Render Result'].save_render(filepath='image.png')
object にアクセスする
active = bpy.context.active_object
print(active)
for o in bpy.data.objects:
print(o)