UI classes that have ‘with’ statement support now set parent back to previous ‘with’ object if there are nested with statements; if not in a nested with statement, resets parent back to UI element’s parent (or more precisely, the first element that is not a rowGroupLayout element)
with OptionMenuGrp() will set parent menu properly
‘Unit’ support for Quaternion objects is now removed (as it doesn’t make any sense)
can now pass in PyNode class objects to functions / methods that expect a mel node class name - ie:
listRelatives(allDescendents=True, type=nt.Joint)
is equivalent to:
listRelatives(allDescendents=True, type=’joint’)
other: NameParser(dagObj) now always gives a DagNodeName even if shortName has no |