PyMEL vs cmds Maya Autodesk

32 Views Asked by At

I need to replace all pymel.core func with maya.cmds (Maya Autodesk) How to replace PyNode(node_name), what is analog?

Trying to find "one row" function, somehting like cmds.Node?? Does such function exist? Thank you.

1

There are 1 best solutions below

0
haggi krey On

There is not direct 1:1 translation. Pymel wraps Maya nodes into objects whereas cmds simply use and return strings. I suppose you will have to recreate the scripts by hand or try with the help of a machine learning tool.