mayapy/maya.standalone错误:没有与名称匹配的对象:.aiTranslator



当我在mayapy:中运行此程序时

import maya.standalone
maya.standalone.initialize()
import maya.cmds as cmds
cmds.file("/Users/Desktop/test.ma", open=True, force=True)

然后我得到这个错误:

RuntimeError: file: /Users/Desktop/dad.ma line 26: The camera 'perspShape' has no '.aiTranslator' attribute.
file: /Users/Desktop/test.ma line 26: setAttr: No object matches name: .aiTranslator
file: /Users/Desktop/test.ma line 43: The camera 'topShape' has no '.aiTranslator' attribute.
file: /Users/Desktop/test.ma line 43: setAttr: No object matches name: .aiTranslator
file: /Users/Desktop/test.ma line 59: The camera 'frontShape' has no '.aiTranslator' attribute.
file: /Users/Desktop/test.ma line 59: setAttr: No object matches name: .aiTranslator
file: /Users/Desktop/test.ma line 76: The camera 'sideShape' has no '.aiTranslator' attribute.
file: /Users/Desktop/test.ma line 76: setAttr: No object matches name: .aiTranslator
file: /Users/Desktop/test.ma line 90: The mesh 'pSphereShape1' has no '.aiTranslator' attribute.
file: /Users/Desktop/test.ma line 90: setAttr: No object matches name: .aiTranslator
Error reading file.
Error reading file.

但是当我在maya:中运行这个时

import maya.cmds as cmds
cmds.file("/Users/Desktop/test.ma", open=True, force=True)

然后执行得很好。

test.ma只是一个包含一个对象的新场景,没有什么新奇之处。出于某种原因,通过mayapy/maya.standalone运行此程序时,我得到了这个错误

您可能需要检查是否加载了mtoa。如果未加载,请在打开文件之前加载它。

import maya.standalone
maya.standalone.initialize()
import maya.cmds as cmds
if  not cmds.pluginInfo("mtoa.so", q=True, loaded=True):
cmds.loadPlugin("mtoa.so")
cmds.file("/Users/Desktop/test.ma", open=True, force=True)

相关内容

  • 没有找到相关文章

最新更新