mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-14 02:07:54 -06:00
New experimental parameter to adjust initial loading speed of the filament from the nozzle
This commit is contained in:
parent
09ce6c62ea
commit
74e807f89b
7 changed files with 20 additions and 5 deletions
|
@ -482,6 +482,14 @@ PrintConfigDef::PrintConfigDef()
|
|||
def->min = 0;
|
||||
def->default_value = new ConfigOptionFloats { 90. };
|
||||
|
||||
def = this->add("filament_unloading_speed_start", coFloats);
|
||||
def->label = L("EXPERIMENTAL: Unloading speed at the start");
|
||||
def->tooltip = L("Speed used for unloading the tip of the filament immediately after ramming. ");
|
||||
def->sidetext = L("mm/s");
|
||||
def->cli = "filament-unloading-speed-start=f@";
|
||||
def->min = 0;
|
||||
def->default_value = new ConfigOptionFloats { 83. };
|
||||
|
||||
def = this->add("filament_toolchange_delay", coFloats);
|
||||
def->label = L("Delay after unloading");
|
||||
def->tooltip = L("Time to wait after the filament is unloaded. "
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue