You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/MaterialEditor.Base/PluginBase.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -140,7 +140,7 @@ public virtual void Awake()
140
140
Directory.CreateDirectory(ExportPath);
141
141
142
142
UIScale=Config.Bind("Config","UI Scale",1.75f,newConfigDescription("Controls the size of the window.",newAcceptableValueRange<float>(1f,3f),newConfigurationManagerAttributes{Order=7}));
143
-
UIWidth=Config.Bind("Config","UI Width",0.3f,newConfigDescription("Controls the size of the window.",newAcceptableValueRange<float>(0f,1f),newConfigurationManagerAttributes{Order=6,ShowRangeAsPercent=false}));
143
+
UIWidth=Config.Bind("Config","UI Width",0.33f,newConfigDescription("Controls the size of the window.",newAcceptableValueRange<float>(0f,1f),newConfigurationManagerAttributes{Order=6,ShowRangeAsPercent=false}));
144
144
UIHeight=Config.Bind("Config","UI Height",0.3f,newConfigDescription("Controls the size of the window.",newAcceptableValueRange<float>(0f,1f),newConfigurationManagerAttributes{Order=5,ShowRangeAsPercent=false}));
145
145
UIListWidth=Config.Bind("Config","UI List Width",180f,newConfigDescription("Controls width of the renderer/materials lists to the side of the window",newAcceptableValueRange<float>(100f,500f),newConfigurationManagerAttributes{Order=4,ShowRangeAsPercent=false}));
146
146
DragSensitivity=Config.Bind("Config","Drag Sensitivity",30f,newConfigDescription("Controls the sensitivity of dragging labels to edit float values",newAcceptableValueRange<float>(1f,100f),newConfigurationManagerAttributes{Order=3,ShowRangeAsPercent=false}));
0 commit comments