Notifications
Clear all

[Closed] make all materials unique

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
 rdg

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

I can’t test at the moment, too.
I will give u answer when I tested it.