通过 MEL 代码调用 python 对象时出错
怎么解决这个问题。
Following error occurs from maya. I am doing the following in Filemenu.mel file. this runs at the startup.
python("从Path导入saveCentral_"); 。 。 。
全局过程 runSaveCentral() {
python("saveCentral_fromPath.saveCentral()");
python("a._first_()");
}
。 。 。 menuItem -label ("保存中央") -en 1 -annotation(“发布:复制到中心区域”) -command(“runSaveCentral()”)publishItem;
# Error: file: S:/xxxxxxxx/scripts/maya/melTEST/FileMenu.mel line 64: class saveCentral_fromPath has no attribute 'saveCentral'
# Traceback (most recent call last):
# File "<maya console>", line 1, in <module>
# AttributeError: class saveCentral_fromPath has no attribute 'saveCentral' #
Brgds,
克尼什
How to resolve this.
Following error occurs from maya. I am doing the following in Filemenu.mel file. this runs at the startup.
python("import saveCentral_fromPath");
.
.
.
global proc runSaveCentral()
{
python("saveCentral_fromPath.saveCentral()");
python("a._first_()");
}
.
.
.
menuItem -label ("save Central") -en 1
-annotation ("publish : copy to central area")
-command ("runSaveCentral()") publishItem;
# Error: file: S:/xxxxxxxx/scripts/maya/melTEST/FileMenu.mel line 64: class saveCentral_fromPath has no attribute 'saveCentral'
# Traceback (most recent call last):
# File "<maya console>", line 1, in <module>
# AttributeError: class saveCentral_fromPath has no attribute 'saveCentral' #
Brgds,
kNish
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)