Notifications
Clear all
[Closed] Saving UV-layouts using MXS
Feb 21, 2008 2:32 pm
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
Feb 21, 2008 2:32 pm
check this:
http://www.scriptspot.com/scripts/web_upload/studio2k/MultiRenderUV_v0_82_Only_MAX8.rar
is it what you are looking for?
Feb 21, 2008 2:32 pm
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
Feb 21, 2008 2:32 pm
yep, but try to test that with the scrimski’s code with some objs selected…:eek:
Feb 21, 2008 2:32 pm
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.