一句话遍历场景
for obj in doc.GetActiveObjects():
print obj
使用while循环
obj = doc.GetFirstObject()
while(obj):
print obj.GetName()
obj = obj.GetNext()
用while时,弄成死循环,c4d就不会动了。obj=obj.GetNext()是关键,及时使用break之类跳出。
一句话遍历场景
for obj in doc.GetActiveObjects():
print obj
使用while循环
obj = doc.GetFirstObject()
while(obj):
print obj.GetName()
obj = obj.GetNext()
用while时,弄成死循环,c4d就不会动了。obj=obj.GetNext()是关键,及时使用break之类跳出。