I'm trying to add a custom manipulator node to a manipulator container in 
python.

The MPxManipContainer.addMPxManipulatorNode method takes an argument which 
is a pointer by reference of type MPxManipulatorNode.

>From the docs:

MStatus addMPxManipulatorNode(const MString & manipTypeName, const MString 
&manipName
, MPxManipulatorNode *& proxyManip)

>From a C++ example:

MPxManipulatorNode *proxyManip = 0;
MString manipTypeName("singleLineManip");
MString manipName("rightLineManip");
status = addMPxManipulatorNode( manipTypeName, manipName, proxyManip );

I've tried using MScriptUtil with a pointer to int, short, uint types with 
no success. It really wants a pointer to a MPxManipulatorNode.

Anyone have any ideas?

Thanks
Andy

-- 
You received this message because you are subscribed to the Google Groups 
"Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/python_inside_maya/9b7d100c-61cb-44a5-8027-a0a1dd1c2d6b%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to