2008年07月16日
サブモジュール:Scene
インポートモジュール
from Blender import Scene
from Blender import Window
from Blender import Window
「myScene」という名のシーンを作って、現在のシーンにする
scn = Scene.New('myScene')
scn.makeCurrent()
scn.makeCurrent()
シーン名を指定して、シーンを削除する
scn = Scene.Get('Scene.099')
Scene.unlink(scn)
Scene.unlink(scn)
全てのシーンのリストを得る
scenelist = Scene.Get()
for scn in scenelist:
print scn
for scn in scenelist:
print scn
現在のシーン上にある、全てのオブジェクトの名前・タイプ・座標を表示する
scn = Scene.GetCurrent()
for obj in scn.objects:
print obj.name, obj.type, obj.loc
for obj in scn.objects:
print obj.name, obj.type, obj.loc
現在のシーン上にある、全てのMeshオブジェクトの名前・座標を表示する
scn = Scene.GetCurrent()
for obj in scn.objects:
if obj.type=='Mesh':
print obj.name, obj.loc
for obj in scn.objects:
if obj.type=='Mesh':
print obj.name, obj.loc
blender v2.46 Blender Foundation
Posted by ぱすてる at 20:37│Comments(0)
│Scene