Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2017-06-21 17:15:39 +0300
committerbubnikv <bubnikv@gmail.com>2017-06-21 17:15:39 +0300
commitf0325575c212236b2447ab3241873716acbf97c4 (patch)
treecf0174eb9f3a8486e34458a50da61e3de5370417 /t/support.t
parent0bd2bb1e8e1a1b83ae1bd2ed5fafed6e7643e7e3 (diff)
Slic3r has been modified to propagate the following filament specific
values to GCode generator, one per active extruder: bed_temperature bridge_fan_speed cooling disable_fan_first_layers fan_always_on fan_below_layer_time first_layer_bed_temperature max_fan_speed min_fan_speed min_print_speed slowdown_below_layer_time Now it remains to extend Slic3r to correctly apply these values.
Diffstat (limited to 't/support.t')
-rw-r--r--t/support.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/support.t b/t/support.t
index e30571c09..e024b7cbe 100644
--- a/t/support.t
+++ b/t/support.t
@@ -114,7 +114,7 @@ use Slic3r::Test;
$config->set('support_material_extrusion_width', 0.6);
$config->set('first_layer_extrusion_width', '100%');
$config->set('bridge_speed', 99);
- $config->set('cooling', 0); # prevent speed alteration
+ $config->set('cooling', [ 0 ]); # prevent speed alteration
$config->set('first_layer_speed', '100%'); # prevent speed alteration
$config->set('start_gcode', ''); # prevent any unexpected Z move
my $print = Slic3r::Test::init_print('20mm_cube', config => $config);
@@ -197,7 +197,7 @@ use Slic3r::Test;
$config->set('support_material', 1);
$config->set('top_solid_layers', 0); # so that we don't have the internal bridge over infill
$config->set('bridge_speed', 99);
- $config->set('cooling', 0);
+ $config->set('cooling', [ 0 ]);
$config->set('first_layer_speed', '100%');
my $test = sub {