Notifications
Clear all
[Closed] Max 2013, SkinUtils
May 06, 2012 9:12 pm
Hi!
2 correct models selected. Clicking on dialog button manually works OK, brings up menu. Via maxscript, always get this:
skinUtils.ImportSkinDataNoDialog true false false false false 1.0 0
** system exception **
Can anyone confirm, is that max 2013 bug, or I am doing something wrong?
1 Reply
May 06, 2012 9:12 pm
i have the same problem here on 3dsmax 2010
It seems that certain objects work and other don’t. i was not able to determine for wich reason. any idea ?
As a temporary workaround i used a try catch to avoid crash of my script and do it by hand when it crashes… (not very fast if you have 500 objects to reskin!)
try (
select #(targetObj , sourceObj)
skinUtils.ImportSkinDataNoDialog true false false false false 1.0 0
)
catch
(
skinUtils.ImportSkinData targetObj sourceObj
)