[REQ] Print material list
-
Does anyone know of a script that can print all material names to the console?
Many thanks in advance.
-
Copy+paste this text +<enter> into the Ruby Console: it prints a list of all of the model's material names
puts;Sketchup.active_model.materials.each{|m|puts m.display_name};puts;
Note that the two
puts;
are simply to format the output with an empty line in and out... -
Thank you TIG. Very much appreciated!
Advertisement