Auto Re-seed Instances

Is there a script or plugin that can automatically reseed instances or copies of similar objects? The application would be for a forest scene, where I want similar types of trees, but I don't want to have to shift-clone each one, change the seed, and shift-clone again. Also, some way to keep certain values of copies instanced (like size or detail level of a tree), but leave other values unique (seed value).

Comments

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.
Aline3D's picture

trees = ($'Foliage*' as

trees = ($'Foliage*' as array)
for t in trees do
(
    rnd = random 1000000 9000000
    t.seed = rnd
)

 

is this? 

AlineLima
Script Developer - SeagullsFly
www.seagullsfly.com
Brasil

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.