|
Seems like this should be easy. I just want to select all of the models in my scene so that I can plot them. Here is what I have tried so far:
lList = FBComponentList() parentModel = FBFindObjectsByName('*',lList,False,True)
for item in lList:
print item.Name
thx
Ok, I found this in an older post, but it selects everything in a scene:
#Get all elements in the scene:
allElems = FBSystem().Scene.Components
#Loop through each element in the scene and select it:
for elemLoop in allElems:
print elemLoop.Name
elemLoop.Selected = True
Surely, there is a better way to get just the models?
MotionBuilder 7.5 thru ...
3dsMax 2.5 thru ...
|
|
|