Anyway, the problem file is this one:
C:\Program Files\Autodesk\Maya 2011 Subscription Advantage Pack\Python\lib\site-packages\maya\app\general\pointOnPolyConstraint.py
Around line 18 there's a .split() to get the node name back, unfortunately in the constraint node that gets generated it doesn't support the nodes namespace in the attributes that get generated and the command fails. Easy to fix, open the file up and replace the following:
name = strings[0].split( '.' )[0] #replace with the following name = strings[0].split( '.' )[0].split(':')[-1]
Fixes it. Another one to log with support. Not yet tried it on Maya 2012 but I suspect the same will be the case
Mark
Update, just checked, it's fixed in Maya2012
ReplyDelete