Notifications
Clear all

[Closed] collect objs withs missing UVWs

Hi All,

Been looking in the docs and searched the forums to see if I can find out how to get maxscript to collect only objects that have missing uvw channels. But Cant find anything, does anyone know if this is possible and how.

Thansk for reading

Dan

4 Replies

Hi,

Interesting question

out of the box I think you could try :

select (for obj in geometry where not (meshop.getMapSupport obj.mesh 1) collect obj)

not tested, though…

Hi,

Many thanks for the suggestion will try it.

thanks again

Dan

easy function:

val=#()
render missingUVWList:&val missingUVWAction:#(#logmsg,#abort) quiet:true
–sort val
print val

Hi Mike

Thanks for that but it seems to invoke a render. Is there a way to do this without doing that?

Cheers

Dan