调整货架图标大小以适应其空间

时间:2014-07-02 11:02:15

标签: icons maya mel

我创建了两个架子按钮和图标,但是在我放置的图像附件中,你可以看到黄色图标似乎工作正常但是蓝色图标却粘在左上角它的“空间”

我为黄色图标创建的初始大小为32 x 32像素,而蓝色大小为20 x 20像素

两个货架属性几乎相同,但我无法让蓝色图标匹配大小或将其放在中心。

那么我有没有其他方法可以调整大小,让它像黄色一样合理调整大小而不创建另一个32 x 32像素的新图像?

// -------- 32 x 32 pixels --------
shelfButton
    -enableCommandRepeat 0
    -enable 1
    -width 34
    -height 34
    -manage 1
    -visible 1
    -label "Yellow Icon"
    -image "icon_yellow.png"
    -style "iconOnly"
    ;

// -------- 20 x 20 pixels --------
shelfButton
    -enableCommandRepeat 0
    -enable 1
    -width 34
    -height 34
    -manage 1
    -visible 1
    -label "Blue Icon"
    -image1 "icon_blue.png"
    -style "iconOnly"
;

1 个答案:

答案 0 :(得分:2)

您需要删除-label标志并添加-scaleIcon和iconAndTextHorizo​​ntal样式。 测试了2016版本。

// -------- 20 x 20 pixels --------
shelfButton
    -enableCommandRepeat 0
    -enable 1
    -width 34
    -height 34
    -manage 1
    -visible 1
    -image1 "icon_blue.png"
    -scaleIcon // scale
    -style "iconAndTextHorizontal"// need for scale
;

http://i.gyazo.com/ff5b398b3ea5de3b11e404565059e4b8.png