On 27/01/2017 at 04:56, xxxxxxxx wrote:
hi guys,
hope y'all are great are doing great,
So is it possible to isolate each object?
because c4d.documents.IsolateObjects(doc, T_obj) dont work when using like this
doc = c4d.documents.GetActiveDocument()
if doc == None:
return False
# Get Models form the Object Manager
objs = doc.GetActiveObjects(1)
if not objs:
gui.MessageDialog("Select objects")
return False
for E in objs:
doctemp = c4d.documents.IsolateObjects(doc, E)
if doctemp == None:
return False
but it ask for all objects which is objs.
so it look this :
doctemp = c4d.documents.IsolateObjects(doc, objs)
and that what it likes but it do all of them , what i want is each object when execute.
so its like each object go in it own folder.
plz help and i hope this was understandable to y'all.
Thanks,
Cheers,
Ashton