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 /slic3r.pl
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 'slic3r.pl')
-rwxr-xr-xslic3r.pl16
1 files changed, 8 insertions, 8 deletions
diff --git a/slic3r.pl b/slic3r.pl
index 54c295008..e158da656 100755
--- a/slic3r.pl
+++ b/slic3r.pl
@@ -315,7 +315,7 @@ $j
--temperature Extrusion temperature in degree Celsius, set 0 to disable (default: $config->{temperature}->[0])
--first-layer-temperature Extrusion temperature for the first layer, in degree Celsius,
set 0 to disable (default: same as --temperature)
- --bed-temperature Heated bed temperature in degree Celsius, set 0 to disable (default: $config->{bed_temperature})
+ --bed-temperature Heated bed temperature in degree Celsius, set 0 to disable (default: $config->{bed_temperature}[0])
--first-layer-bed-temperature Heated bed temperature for the first layer, in degree Celsius,
set 0 to disable (default: same as --bed-temperature)
@@ -464,15 +464,15 @@ $j
Cooling options:
--cooling Enable fan and cooling control
- --min-fan-speed Minimum fan speed (default: $config->{min_fan_speed}%)
- --max-fan-speed Maximum fan speed (default: $config->{max_fan_speed}%)
- --bridge-fan-speed Fan speed to use when bridging (default: $config->{bridge_fan_speed}%)
+ --min-fan-speed Minimum fan speed (default: $config->{min_fan_speed}[0]%)
+ --max-fan-speed Maximum fan speed (default: $config->{max_fan_speed}[0]%)
+ --bridge-fan-speed Fan speed to use when bridging (default: $config->{bridge_fan_speed}[0]%)
--fan-below-layer-time Enable fan if layer print time is below this approximate number
- of seconds (default: $config->{fan_below_layer_time})
+ of seconds (default: $config->{fan_below_layer_time}[0])
--slowdown-below-layer-time Slow down if layer print time is below this approximate number
- of seconds (default: $config->{slowdown_below_layer_time})
- --min-print-speed Minimum print speed (mm/s, default: $config->{min_print_speed})
- --disable-fan-first-layers Disable fan for the first N layers (default: $config->{disable_fan_first_layers})
+ of seconds (default: $config->{slowdown_below_layer_time}[0])
+ --min-print-speed Minimum print speed (mm/s, default: $config->{min_print_speed}[0])
+ --disable-fan-first-layers Disable fan for the first N layers (default: $config->{disable_fan_first_layers}[0])
--fan-always-on Keep fan always on at min fan speed, even for layers that don't need
cooling