Notifications
Clear all
[Closed] make all materials unique
Jul 12, 2006 7:45 am
hi there,
has anyone ever made a script that makes all materials in scene unique?
I mean that any object has its own material?
thx
2 Replies
Jul 12, 2006 7:45 am
this assigns a new material to every object – untested from scatch:
for obj in objects do (
obj.material = standard()
)
and this maybe makes assigned materials unique – untested from scratch
for obj in objects do (
assignNewName obj.material
)
don’t have access to max at the moments.
hope it works.
if not: please post correction.
Georg
Jul 12, 2006 7:45 am
I can’t test at the moment, too.
I will give u answer when I tested it.