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).
Forum topic · Scripts Wanted
Auto Re-seed Instances
By dgtldrgn · 2007-08-15
Description
Comments (1)
trees = ($'Foliage*' as
Aline3D · 2007-08-23
trees = ($'Foliage*' as array)
for t in trees do
(
rnd = random 1000000 9000000
t.seed = rnd
)
is this?