pymxs 替代已弃用的 MaxPlus 实用程序函数

pymxs alternatives to the deprecated MaxPlus utility functions

随着 Autodesk 从 3ds Max 中删除 MaxPlus,我现在不得不重新编写一些代码,并且想知道是否有其他方法可以访问某些 MaxPlus 实用程序功能。虽然我认为在 pymxs 下整合 python 开发的决定是一个好决定,但如果 pymxs 不支持的 MaxPlus 功能事先被移植过来就好了。

我现在需要找到解决方案的已弃用 MaxPlus 实用程序示例:

MaxPlus.ViewportManager.GetActiveViewportShowEdgeFaces()
MaxPlus.PathManager.GetProjectFolderDir()
MaxPlus.PathManager.GetAutobackDir()

如能为我指明正确的方向,我们将不胜感激。

大部分视口功能都位于 NitrousGraphicsManager class 中,因此对于您的第一个功能,请尝试:

>>> graphicsmanager = 
pymxs.runtime.NitrousGraphicsManager.GetActiveViewportSetting()
>>> graphicsmanager.ShowEdgedFacesEnabled
False
>>> graphicsmanager.ShowEdgedFacesEnabled = True

您可以在 pathconfig 结构中找到第二个:

pymxs.runtime.pathconfig.getCurrentProjectFolderPath()

第三个存储为 3ds Max 系统目录,因此应该可以:

>>> pymxs.runtime.GetDir(pymxs.runtime.name('autoback'))