| Item | Quantity | Price |
|---|
| Your cart is empty. Check out our collection of 3d models! |
Prices in:
Clear Cart
Home » Forums » Maya Boards » MEL » convert poly vertex color to texture? Topic 88 of 7501
| Item | Quantity | Price |
|---|
| Total | $0.00 (USD) | ||
| Your cart is empty. Check out our collection of 3d models! | |||
Prices in:
Clear Cart
| Name | Downloads |
|---|---|
TrueGlass |
845,840 |
detachSeparate.mel |
837,129 |
The Andy Rig |
617,661 |
Sergio |
467,155 |
LWOImpR4-R5_043 |
431,545 |
Tiny |
339,497 |
Smedge .6 |
208,192 |
Ocean Shader |
183,736 |
silver shader |
179,838 |
At The Sea |
163,200 |
| Name | Contributions | Posts |
|---|---|---|
| humster3d | 2149 | 2 |
| squir | 1302 | 0 |
| Pupuhol | 967 | 0 |
| KanhtArt | 857 | 0 |
| GuamWork | 854 | 0 |
| admin | 778 | 21231 |
| rose studio | 655 | 0 |
| stefano tartarotti | 616 | 0 |
| VKModels | 444 | 1 |
| fileadmin | 424 | 0 |
Is there any way to export an objects vertex color as a texture map in MEL or python? Then to import a texture and apply it to the vertex color?
you can achieve this manually by going to color>paintVertexColorTool under the tool settings in attribute maps there are import and export options. When I do this manually with echo all commands, I get this:
artExportMapDialog "artAttrPaintVertexCtx";
np_getPrimaryProjectFileRules 0;
// Result: Scenes scene scenes Templates templates data Images images ../3dData/renders Source Images sourceImages textures Render Data renderData Particles particles data/particles Clips clips data/clips Sound sound Scripts scripts Disk Cache diskCache data Movies movie Translator Data translatorData AutoSave autoSave //
waitCursor -state on;
print("Saved file: " + "/home/xxxxxxxxx/Desktop/test12.iff" + "\n");
Saved file: /home/xxxxxxxxxxxx/Desktop/test12.iff
waitCursor -state off;
The only useful command I glean from that is: "artExportMapDialog "artAttrPaintVertexCtx";"
which doesn't help much because the only argument you can seem to give it is the name of a maya tool's context. Any ideas?