ScriptSpot is a diverse online community of artists and developers who come together to find and share scripts that empower their creativity with 3ds Max. Our users come from all parts of the world and work in everything from visual effects to gaming, architecture, students or hobbyists.
Submitted by JokerMartini on Mon, 2011-05-02 12:41
How would i go about writing that I want to run a function for everything in the scene excluding the current selection and any objects hidden or on a hidden layer?
for obj in $* where not obj.isSelected do(
obj.wirecolor = blue
)
Comments
try this
(for obj in $* where not obj.isSelected and not obj.isHidden collect obj).wirecolor = bluemy recent MAXScripts RSS (archive here)