Hello! I’m new to scripting, so would appreciate some help!
I’m trying to create a script that lists all the modifiers from a selection of objects and also the modifier’s properties.
This is what I have at the moment:
For i in 1 to $selection.count do
(
print $selection[i].name
show $selection[i].modifiers
)
Which returns the following:
"Box001"
No Info Found on: #modifiers(FFD 2x2x2:FFD 2x2x2, BendMod:Bend)
"Sphere001"
No Info Found on: #modifiers(TurboSmooth:TurboSmooth)
However, if I do the following
show $.bend
I do get the list of properties, however this isn’t ideal as it means I’d have to write out each modifiers name - Any ideas?