Notifications
Clear all

[Closed] list of objects

I need to save a list of all objects in a scene to a text file. how can I do this?

3 Replies

There is a handy tutorial in the maxscript reference. “how to output geometry data to a text file.”

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

thanks for the responce! I didn’t even know about the sumary info.