mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-07 06:57:36 -06:00
Fuzzy skin fixes + on/off for first layer (#2903)
* Fixing fuzzy skin so it doesn't exit the desired geometry at line ends Adding option to enable/disable fuzzy skin on first layer * Whitespace + removing extra file
This commit is contained in:
parent
d71eaf958e
commit
7c3d97c287
8 changed files with 22 additions and 16 deletions
|
@ -2101,6 +2101,13 @@ def = this->add("filament_loading_speed", coFloats);
|
|||
def->mode = comSimple;
|
||||
def->set_default_value(new ConfigOptionFloat(0.8));
|
||||
|
||||
def = this->add("fuzzy_skin_first_layer", coBool);
|
||||
def->label = L("Apply fuzzy skin to first layer");
|
||||
def->category = L("Others");
|
||||
def->tooltip = L("Whether to apply fuzzy skin on the first layer");
|
||||
def->mode = comSimple;
|
||||
def->set_default_value(new ConfigOptionBool(0));
|
||||
|
||||
def = this->add("filter_out_gap_fill", coFloat);
|
||||
def->label = L("Filter out tiny gaps");
|
||||
def->category = L("Layers and Perimeters");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue