From a58926263c56b64c02b18ceceb635feb7ea9feb0 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Fri, 2 Jun 2017 09:27:05 +0200 Subject: [PATCH] Add flow rate for sanding Let's see how this works out. Contributes to issue CURA-3903. --- resources/definitions/fdmprinter.def.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 5f32fea15a..aa6b244ac2 100755 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -5363,6 +5363,18 @@ "default_value": "lines", "enabled": "sanding_enabled", "settable_per_mesh": true + }, + "sanding_flow": + { + "label": "Sanding Flow", + "description": "The amount of material, relative to a normal skin line, to extrude during sanding. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface.", + "type": "float", + "unit": "%", + "default_value": 30.0, + "minimum_value": "0", + "maximum_value_warning": "50", + "enabled": "sanding_enabled", + "settable_per_mesh": true } } },