通过 MEL 代码调用 python 对象时出错

发布于 2024-09-07 19:08:55 字数 837 浏览 5 评论 0原文

怎么解决这个问题。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小苏打饼 2024-09-14 19:08:55
python("import saveCentral_fromPath");
.
..

global proc runSaveCentral()

{
    python("saveCentral_fromPath.saveCentral()._first_()");
#               filename.classname.functionname
}

.
.
.
menuItem -label ("save Central") -en 1
-annotation ("publish : copy to central area")
-command ("runSaveCentral()") publishItem;
python("import saveCentral_fromPath");
.
..

global proc runSaveCentral()

{
    python("saveCentral_fromPath.saveCentral()._first_()");
#               filename.classname.functionname
}

.
.
.
menuItem -label ("save Central") -en 1
-annotation ("publish : copy to central area")
-command ("runSaveCentral()") publishItem;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文