Inside Sabertooth
Learn how Sabertooth uses 3ds Max to create 3D interactive projects, including HBO Go’s Game of Thrones interactive experience
  • 1/3
You are here: Forum Home / Autodesk® Maya® / Modeling / Copy Mesh Attributes in 2009?
  RSS 2.0 ATOM  

Copy Mesh Attributes in 2009?
Rate this thread
 
18425
 
Permlink of this thread  
avatar
  • Total Posts: 4
  • Joined: 08 July 2007 08:46 PM

In 2008 you had the option under:

Mesh > Copy Mesh Attributes (Used to transfer UVs from one object to th other)

In 2009 the option is not there. Does anyone know where it is or what it may be called now? I know the Transfer Attributes is in both, but it’s not working the same as CMA.

Thanks!



Attachment Attachment
Replies: 0
avatar
  • Mighe
  • Posted: 29 October 2008 05:25 AM

Use the Transfer Attributes: change the sample space option from global to local if your objects are not aligned.
Probably the Copy Mesh Attributes was a double option and they have removed it from the menu, but the related mel command is still there.



Replies: 0
avatar

I also got the same problem and cannot be solved by using Transfer Attributes.

I want to transfer the UV of a polygon object to the UV of a SubD object which the polygon object is converted & duplicated from the SubD object. The result is that the UV of the SubD object doesn’t look properly after using Transfer Attributes.



Replies: 0
avatar
  • Swaysome
  • Posted: 23 March 2009 01:59 PM

yeah, I was looking for this and could find it? The transfer attribute do not work too well. Btw, the mel command? Maybe I could use that.



Replies: 0
avatar

The MEL command is “polyCopyUV”, you can find the options and flags in the online manual; as i know, you can’t transfer poly uvs to subds directly, instead try to reconvert the subs cage in polygons meshes, transfer the uv coordinates and recreate the subdivision surface: i don’t remember how it works because i forgot the subdivision surfaces workflow, but you can give it a try.



Replies: 0
avatar
  • Swaysome
  • Posted: 24 March 2009 12:46 PM

I found a fix for the copy mesh attributes. I run the mel command: polyTransfer -v 0 -vc 0 -uv 1 -ao “objectUvFix” “objectUvUnfix”; ( you’d replace the objectUvFix with the name of the object with fix Uv and objectUvUnfix with the name of the objects you want the attribute copied to.)



Replies: 0
avatar

The “polyTransfer” command is the same used by the transfer attributes tool.



Replies: 0
avatar

No, the transfer attributes tool uses the mel command transferAttributes like so:

transferAttributes -transferPositions 1 -transferNormals 0 -transferUVs 1 -sourceUvSet “map1” -targetUvSet “map1” -transferColors 0 -sampleSpace 1 -sourceUvSpace “map1” -targetUvSpace “map1” -searchMethod 3-flipUVs 0 -colorBorders 1 ;

The copy mesh attributes command used the polyTransfer command like so:

polyTransfer -v 0 -vc 0 -uv 1 -ao Obj1 Obj2;



Replies: 0