Selaa lähdekoodia

Merge pull request #1774 from MackeyK24/master

Default Max Influencer Settings
David Catuhe 8 vuotta sitten
vanhempi
commit
e5532c6751
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  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;
 }