Notifications
Clear all
[Closed] list of objects
Jul 18, 2007 8:12 pm
I need to save a list of all objects in a scene to a text file. how can I do this?
3 Replies
Jul 18, 2007 8:12 pm
There is a handy tutorial in the maxscript reference. “how to output geometry data to a text file.”
Jul 18, 2007 8:12 pm
You can do it without maxscript too. Just go to File->Summary Info–>Save to File.
Or a simple script would be:
ns = newScript()
for i in objects do
(
print i to:ns
)
-Dave