From a657d851218c95356771f4a839fdeea537e9919c Mon Sep 17 00:00:00 2001 From: SoftFever <103989404+SoftFever@users.noreply.github.com> Date: Sun, 7 May 2023 20:03:00 +0800 Subject: [PATCH] Support interface fan speed --- src/libslic3r/PrintConfig.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index cdd24bd2455..0b7d249cbf5 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -1651,6 +1651,18 @@ void PrintConfigDef::init_fff_params() def->max = 1000; def->mode = comAdvanced; def->set_default_value(new ConfigOptionInts { 0 }); + + def = this->add("support_material_interface_fan_speed", coInts); + def->label = L("Support interface fan speed"); + def->tooltip = L("This fan speed is enforced during all support interfaces, to be able to weaken their bonding with a high fan speed." + "\nSet to -1 to disable this override." + "\nCan only be overriden by disable_fan_first_layers."); + def->sidetext = L("%"); + def->min = -1; + def->max = 100; + def->mode = comAdvanced; + def->set_default_value(new ConfigOptionInts{ -1 }); + def = this->add("fuzzy_skin", coEnum); def->label = L("Fuzzy Skin");