feat: support_bottom_height and support_interface_height (CURA-1013)

This commit is contained in:
Tim Kuipers 2016-07-27 10:18:19 +02:00
parent 35107742d6
commit f4698c7cd4

View File

@ -2365,10 +2365,10 @@
"enabled": "support_enable",
"settable_per_mesh": true
},
"support_roof_height":
"support_interface_height":
{
"label": "Support Roof Thickness",
"description": "The thickness of the support roofs.",
"label": "Support Interface Thickness",
"description": "The thickness of the interface of the support where it touches with the model on the bottom or the top.",
"unit": "mm",
"type": "float",
"default_value": 1,
@ -2376,7 +2376,38 @@
"global_inherits_stack": "support_extruder_nr",
"maximum_value_warning": "10",
"enabled": "support_roof_enable and support_enable",
"settable_per_mesh": true
"settable_per_mesh": true,
"children":
{
"support_roof_height":
{
"label": "Support Roof Thickness",
"description": "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests.",
"unit": "mm",
"type": "float",
"default_value": 1,
"value": "support_interface_height",
"minimum_value": "0",
"global_inherits_stack": "support_extruder_nr",
"maximum_value_warning": "10",
"enabled": "support_roof_enable and support_enable",
"settable_per_mesh": true
},
"support_bottom_height":
{
"label": "Support Bottom Thickness",
"description": "The thickness of the support bottoms. This controls the number of dense layers are printed on top of places of a model on which support rests.",
"unit": "mm",
"type": "float",
"default_value": 1,
"value": "support_interface_height",
"minimum_value": "0",
"global_inherits_stack": "support_extruder_nr",
"maximum_value_warning": "10",
"enabled": "support_roof_enable and support_enable",
"settable_per_mesh": true
}
}
},
"support_roof_density":
{