This release of 3ds Max introduces some changes and improvements to the Max Python API.
The Python version used by 3ds Max is still 2.7.12. This has not changed in this release.
The included PySide2 version is upgraded from 5.6.2 to 5.6.3.
The pymxs module now supports functions that take by-reference parameters, with the new pymxs.mxsreference() function. In previous versions, these parameters were not handled.
For example:
rt = pymxs.runtime s = rt.sphere() myResultArray = rt.Array() rt.maxOps.cloneNodes(rt.mySphere2, cloneType=rt.Name("reference"), newNodes=pymxs.mxsreference(myResultArray)) print myResultArray