使用mel或python更改架子上梅尔脚本上的图标

时间:2015-06-04 23:25:35

标签: python mel maya-api

我在MEL中使用addNewShelfTab和scriptToShelf命令为我的迷你mel脚本创建一个图标。我希望能够通过使用MEL或Python从Shelf Editor中更改默认情况下此按钮的图标。我怎么能这样做呢?

2 个答案:

答案 0 :(得分:0)

shelfButton mel command help

shelfButton -edit -image1 "icon.png" $name;

答案 1 :(得分:0)

以下python脚本对我有用:

import maya.mel as mel
import pymel.core as pm

mel.eval('addNewShelfTab($shelfName)');
pm.shelfButton( annotation='Annotation', image1=$image, command='<command>' );