Notifications
Clear all

[Closed] Saving UV-layouts using MXS

Hi,
is there a way to script the process of saving a UV-layout form an unwrap modifier?

I got

UnMod = (unwrap_UVW())
UnMod.name = "renderlayout"
unMod.renderuv_width = 2048
unMod.renderuv_height = 2048
unMod.renderuv_showframebuffer = true
for i = 1 to selection.count do
	(
	if superClassOf selection[i] == geometryClass then
		(
			addModifier selection[i] UnMod
			selection[i].modifiers[#renderlayout].unwrap5.renderUV ""
			deleteModifier selection[i] UnMod
		)
	)

so far, but can’t find a way to save the layout.

5 Replies

Not really, but I found a line or two of usefull code.

Thanks.

selection[i].modifiers[#renderlayout].unwrap5.renderUV (“d:\ emp\”+selection[i].name+”.png”)

Adding a filepath to the “” at the end of this command seems to save the file

yep, but try to test that with the scrimski’s code with some objs selected…:eek:

Adding a filepath to the “” at the end of this command seems to save the file

That’s what I meant with ‘usefull code’ and works great so far, even with several objects selected.

Thanks everyone.