mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-21 05:37:52 -06:00
NEW: allow changing the angle of ironing in the dep mode.
Signed-off-by: wenjie.guo <wenjie.guo@bambulab.com> Change-Id: I09348096fd19ee4e07ce3a04ae152f7ee5758767 Signed-off-by: wenjie.guo <wenjie.guo@bambulab.com>
This commit is contained in:
parent
edcdad162e
commit
ba3638e70e
7 changed files with 17 additions and 5 deletions
|
@ -1929,6 +1929,16 @@ void PrintConfigDef::init_fff_params()
|
|||
def->mode = comAdvanced;
|
||||
def->set_default_value(new ConfigOptionFloat(20));
|
||||
|
||||
def = this->add("ironing_direction", coFloat);
|
||||
def->label = L("ironing direction");
|
||||
def->category = L("Quality");
|
||||
def->tooltip = L("Angle for ironing, which controls the angle of the nozzle when ironing");
|
||||
def->sidetext = L("°");
|
||||
def->min = 0;
|
||||
def->max = 360;
|
||||
def->mode = comDevelop;
|
||||
def->set_default_value(new ConfigOptionFloat(45));
|
||||
|
||||
def = this->add("layer_change_gcode", coString);
|
||||
def->label = L("Layer change G-code");
|
||||
def->tooltip = L("This gcode part is inserted at every layer change after lift z");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue