Message 1 of 3
OpenMayaMPx.cvar.MPxDeformerNode_outputGeom error
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I just started using maya 2016, and was trying to run a python deformer plug-in that was created in 2014, and was getting an error from this line:
outputGeom = OpenMayaMPx.cvar.MPxDeformerNode_outputGeom
seems the class with outputGeom has changed. The plug-in now works after changing the line to this:
outputGeom = OpenMayaMPx.cvar.MPxGeometryFilter_outputGeom
Did anyone else notice this change? Seems this kind of change will break a lot of older python plug-ins.