mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-19 04:37:52 -06:00
Add option for skirt-speed override (#1371)
Add skirt speed option. Co-authored-by: SoftFever <softfeverever@gmail.com>
This commit is contained in:
parent
e925db8c0f
commit
8e4a43ea5c
7 changed files with 20 additions and 2 deletions
|
@ -4022,6 +4022,12 @@ std::string GCode::_extrude(const ExtrusionPath &path, std::string description,
|
|||
}
|
||||
}
|
||||
}
|
||||
// Override skirt speed if set
|
||||
if (path.role() == erSkirt) {
|
||||
const double skirt_speed = m_config.get_abs_value("skirt_speed");
|
||||
if (skirt_speed > 0.0)
|
||||
speed = skirt_speed;
|
||||
}
|
||||
//BBS: remove this config
|
||||
//else if (this->object_layer_over_raft())
|
||||
// speed = m_config.get_abs_value("first_layer_speed_over_raft", speed);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue