added a T1 extrusion move speed multiplier
refactoring issue: MatterHackers/MCCentral#5291 Create T1 printing move speed multiplier
This commit is contained in:
parent
40bf064d55
commit
48f436cc4a
10 changed files with 129 additions and 16 deletions
|
|
@ -225,6 +225,7 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
|
|||
public const string support_material_speed = nameof(support_material_speed);
|
||||
public const string support_material_xy_distance = nameof(support_material_xy_distance);
|
||||
public const string support_type = nameof(support_type);
|
||||
public const string t1_extrusion_move_speed_multiplier = nameof(t1_extrusion_move_speed_multiplier);
|
||||
public const string temperature = nameof(temperature);
|
||||
public const string temperature1 = nameof(temperature1);
|
||||
public const string temperature2 = nameof(temperature2);
|
||||
|
|
|
|||
|
|
@ -1771,6 +1771,16 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
|
|||
DefaultValue = "200"
|
||||
},
|
||||
new SliceSettingData()
|
||||
{
|
||||
SlicerConfigName = SettingsKey.t1_extrusion_move_speed_multiplier,
|
||||
PresentationName = "Extruder 2 Speed".Localize(),
|
||||
HelpText = "Modify T1 speeds during extrusion moves by the ratio or percent.".Localize(),
|
||||
DataEditType = DataEditTypes.DOUBLE_OR_PERCENT,
|
||||
Units = "Ratio or %",
|
||||
ShowIfSet = "!sla_printer&extruder_count>1",
|
||||
DefaultValue = "100%"
|
||||
},
|
||||
new SliceSettingData()
|
||||
{
|
||||
SlicerConfigName = SettingsKey.temperature2,
|
||||
PresentationName = "Extruder 3 Temperature".Localize(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue