Dual extruder for support material

This commit is contained in:
Alessandro Ranellucci 2012-02-19 17:02:49 +01:00
parent 375829204f
commit 94a2585b97
5 changed files with 23 additions and 1 deletions

View file

@ -326,4 +326,11 @@ sub _Gx {
return "$gcode\n";
}
sub set_tool {
my $self = shift;
my ($tool) = @_;
return sprintf "T%d%s\n", $tool, ($Slic3r::gcode_comments ? ' ; change tool' : '');
}
1;