Blenderのリポジトリ (master) https://git.blender.org/gitweb/gitweb.cgi/blender.git/tree/refs/heads/master Blender 2. …
カテゴリーアーカイブ: bpy
Blender2.5から始めるスクリプト05
オブジェクトパネル最下部に「Test」欄とボタンを作成し、押したら「clicked」と表示する。 import bpy class ObjectButtonsPanel(bpy.types.Panel): bl_spac …
Blender2.5から始めるスクリプト04
オブジェクトパネル最下部に「Test」欄作成 import bpy class ObjectButtonsPanel(bpy.types.Panel): bl_space_type = “PROPERTIES …
Blender2.5から始めるスクリプト03
オブジェクトのアトリビュート(nameやlocationとか。属性、プロパティ)を列挙 import bpy obj = bpy.context.active_object dir(name)
Blender2.5から始めるスクリプト02
現在のアクティブなオブジェクト名を表示 import bpy obj = bpy.context.active_object print(obj.name)
Blender2.5から始めるスクリプト01
実行するたびに名前が「Cube」のオブジェクトのx座標を1移動 import bpy bpy.context.scene.objects[“Cube”].location.x += 1