A new feature "support_material_buildplate_only" implemented.

Also a bug has been fixed for zero interface layers. Before
slic3r would put infinite number of interface layers over top surfaces,
if the number of interface layers was set to zero.
This commit is contained in:
bubnikv 2016-10-04 13:54:10 +02:00
parent ae2bae137a
commit 5bb37ad2c4
7 changed files with 68 additions and 12 deletions

View file

@ -124,7 +124,7 @@ sub build {
layer_height perimeters top_solid_layers bottom_solid_layers
fill_density fill_pattern external_fill_pattern
support_material support_material_spacing raft_layers
support_material_contact_distance dont_support_bridges
support_material_contact_distance support_material_buildplate_only dont_support_bridges
perimeter_speed infill_speed travel_speed
brim_width
xy_size_compensation
@ -155,6 +155,7 @@ sub build {
$optgroup->append_single_option_line('support_material');
$optgroup->append_single_option_line('support_material_spacing');
$optgroup->append_single_option_line('support_material_contact_distance');
$optgroup->append_single_option_line('support_material_buildplate_only');
$optgroup->append_single_option_line('dont_support_bridges');
$optgroup->append_single_option_line('raft_layers');
}