New support settings: "support_material_auto" controls, whether

the supports shall be generated automatically.
If not, only supports inside support enforcers are generated.
This commit is contained in:
bubnikv
2018-09-07 14:53:42 +02:00
parent 2a81408e8b
commit 6de8e21131
8 changed files with 63 additions and 43 deletions

View File

@@ -1696,6 +1696,14 @@ PrintConfigDef::PrintConfigDef()
def->cli = "support-material!";
def->default_value = new ConfigOptionBool(false);
def = this->add("support_material_auto", coBool);
def->label = L("Auto generated supports");
def->category = L("Support material");
def->tooltip = L("If checked, supports will be generated automatically based on the overhang threshold value."\
" If unchecked, supports will be generated inside the \"Support Enforcer\" volumes only.");
def->cli = "support-material-auto!";
def->default_value = new ConfigOptionBool(true);
def = this->add("support_material_xy_spacing", coFloatOrPercent);
def->label = L("XY separation between an object and its support");
def->category = L("Support material");