Hi,
In case this is the wrong forum to be asking for max script help I'd like to apologize and ask moderators to the correct section.
I am a max script newbie and I'm trying to make a loop that iterates through selected objects and increments a specified property by 1 or 5 according to the name suffix (Object_01,Object_02: 01, 02).
01 - don't increment 1*property
02 - multiply property by 2 etc
This is what I've got so far:
for i = 1 to selection.count do
(
selection.property = i*getProperty
)
Replies
Assuming you want to multiply by the suffix in the name this should work.