浏览代码

Merge pull request #1774 from MackeyK24/master

Default Max Influencer Settings
David Catuhe 8 年之前
父节点
当前提交
e5532c6751
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Exporters/Maya/Tools/babylonReskinTool.mel

+ 1 - 1
Exporters/Maya/Tools/babylonReskinTool.mel

@@ -43,7 +43,7 @@ global proc babylonReskinTool() {
     string $window = `window -title "Reskin Geometry Tool"`;
     columnLayout -adjustableColumn true;
     textFieldGrp -label "New Skin Name" -text "" myReskinName;
-    intSliderGrp -label "Max Influencers" -field true -minValue 1 -maxValue 20 -fieldMinValue 1 -fieldMaxValue 20 -value 5 myReskinInfluencers;
+    intSliderGrp -label "Max Influencers" -field true -minValue 1 -maxValue 8 -fieldMinValue 1 -fieldMaxValue 8 -value 4 myReskinInfluencers;
     button -label "Reskin Selected Meshes" -command "reskinSelectedMeshes()" myReskinButton; 
     showWindow $window;
 }