Origami is the art of folding a plain piece of paper into an interesting, and sometimes useful artifact. Data has the same properties. In its raw form it is typically quite bland. Only after carefully working with the data is the beauty and usefulness revealed.
Sunday, August 16, 2009
Script to find the type of each object in a Blender scene
This examples applies to Blender 2.49 and some earlier versions.
import Blender
from Blender import *
scn = Scene.GetCurrent()
obs = scn.objects
for ob in obs:
print 'Object named %s has type %s' % (ob.name,ob.type)
No comments:
Post a Comment