我在MEL中使用addNewShelfTab和scriptToShelf命令为我的迷你mel脚本创建一个图标。我希望能够通过使用MEL或Python从Shelf Editor中更改默认情况下此按钮的图标。我怎么能这样做呢?
答案 0 :(得分:0)
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>' );