mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-07-01 16:58:01 +02:00
Disable retraction when moving over infill space. #29
This commit is contained in:
@@ -423,8 +423,11 @@ sub export_gcode {
|
||||
|
||||
# extrude fills
|
||||
for my $fill (@{ $layer->fills }) {
|
||||
printf $fh $extruder->extrude($_, 'fill')
|
||||
for $fill->shortest_path($extruder->last_pos);
|
||||
for ($fill->shortest_path($extruder->last_pos)) {
|
||||
printf $fh $extruder->extrude($_, 'fill');
|
||||
$extruder->enable_retraction(0);
|
||||
}
|
||||
$extruder->enable_retraction(1);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user