mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-30 10:05:42 +08:00
fix: all settings now have either a min_value or a min_value_warning, and if possible a max_value or a max_value_warning (CURA-666)
Also some min_value settings were a number instead of a string with a number...
This commit is contained in:
parent
9a6980211c
commit
2dc0118d3d
@ -154,6 +154,7 @@
|
||||
"type": "float",
|
||||
"default": 0.4,
|
||||
"min_value": "0.001",
|
||||
"max_value_warning": "10",
|
||||
"visible": false
|
||||
}
|
||||
}
|
||||
@ -282,6 +283,8 @@
|
||||
"description": "Width of a single support roof line, used to fill the top of the support.",
|
||||
"unit": "mm",
|
||||
"default": 0.4,
|
||||
"min_value": "0.0001",
|
||||
"max_value_warning": "machine_nozzle_size * 2",
|
||||
"type": "float",
|
||||
"visible": false,
|
||||
"enabled": "support_roof_enable"
|
||||
@ -319,8 +322,8 @@
|
||||
"wall_line_count": {
|
||||
"label": "Wall Line Count",
|
||||
"description": "Number of shell lines. These lines are called perimeter lines in other tools and impact the strength and structural integrity of your print.",
|
||||
"min_value": "0",
|
||||
"default": 2,
|
||||
"min_value": "0",
|
||||
"type": "int",
|
||||
"visible": false,
|
||||
"inherit_function": "max(1, round((wall_thickness - wall_line_width_0) / wall_line_width_x) + 1)"
|
||||
@ -350,16 +353,18 @@
|
||||
"label": "Top Thickness",
|
||||
"description": "This controls the thickness of the top layers. The number of solid layers printed is calculated from the layer thickness and this value. Having this value be a multiple of the layer thickness makes sense. Keep it near your wall thickness to make an evenly strong part.",
|
||||
"unit": "mm",
|
||||
"min_value": "0",
|
||||
"default": 0.8,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "100",
|
||||
"type": "float",
|
||||
"visible": false,
|
||||
"children": {
|
||||
"top_layers": {
|
||||
"label": "Top Layers",
|
||||
"description": "This controls the number of top layers.",
|
||||
"min_value": "0",
|
||||
"default": 8,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "100",
|
||||
"type": "int",
|
||||
"visible": false,
|
||||
"inherit_function": "0 if infill_sparse_density == 100 else math.ceil(parent_value / layer_height)"
|
||||
@ -370,8 +375,8 @@
|
||||
"label": "Bottom Thickness",
|
||||
"description": "This controls the thickness of the bottom layers. The number of solid layers printed is calculated from the layer thickness and this value. Having this value be a multiple of the layer thickness makes sense. And keep it near to your wall thickness to make an evenly strong part.",
|
||||
"unit": "mm",
|
||||
"min_value": "0",
|
||||
"default": 0.6,
|
||||
"min_value": "0",
|
||||
"type": "float",
|
||||
"visible": false,
|
||||
"children": {
|
||||
@ -465,6 +470,8 @@
|
||||
"label": "Extra Skin Wall Count",
|
||||
"description": "Number of lines around skin regions. Using one or two skin perimeter lines can greatly improve roofs which would start in the middle of infill cells.",
|
||||
"default": 0,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "10",
|
||||
"type": "int",
|
||||
"visible": false
|
||||
},
|
||||
@ -473,6 +480,8 @@
|
||||
"description": "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes.",
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"min_value_warning": "10",
|
||||
"max_value_warning": "10",
|
||||
"default": 0,
|
||||
"visible": false
|
||||
},
|
||||
@ -510,6 +519,7 @@
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 2,
|
||||
"min_value": "0",
|
||||
"visible": false,
|
||||
"inherit_function": "0 if infill_sparse_density == 0 else (infill_line_width * 100) / infill_sparse_density"
|
||||
}
|
||||
@ -547,6 +557,8 @@
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 0.04,
|
||||
"min_value_warning": "0",
|
||||
"max_value_warning": "machine_nozzle_size",
|
||||
"visible": false
|
||||
},
|
||||
"infill_sparse_thickness": {
|
||||
@ -555,6 +567,8 @@
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 0.1,
|
||||
"min_value": "0.0001",
|
||||
"max_value_warning": "0.32",
|
||||
"visible": false,
|
||||
"inherit_function": "layer_height"
|
||||
},
|
||||
@ -631,6 +645,7 @@
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 2.85,
|
||||
"min_value": "0.0001",
|
||||
"min_value_warning": "0.4",
|
||||
"max_value_warning": "3.5"
|
||||
},
|
||||
@ -657,6 +672,8 @@
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 4.5,
|
||||
"min_value_warning": "-0.0001",
|
||||
"max_value_warning": "10.0",
|
||||
"visible": false,
|
||||
"inherit": false,
|
||||
"enabled": "retraction_enable"
|
||||
@ -667,6 +684,8 @@
|
||||
"unit": "mm/s",
|
||||
"type": "float",
|
||||
"default": 25,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "100",
|
||||
"visible": false,
|
||||
"inherit": false,
|
||||
"enabled": "retraction_enable",
|
||||
@ -677,6 +696,8 @@
|
||||
"unit": "mm/s",
|
||||
"type": "float",
|
||||
"default": 25,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "100",
|
||||
"visible": false,
|
||||
"enabled": "retraction_enable"
|
||||
},
|
||||
@ -686,6 +707,8 @@
|
||||
"unit": "mm/s",
|
||||
"type": "float",
|
||||
"default": 25,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "100",
|
||||
"visible": false,
|
||||
"enabled": "retraction_enable"
|
||||
}
|
||||
@ -697,6 +720,8 @@
|
||||
"unit": "mm³",
|
||||
"type": "float",
|
||||
"default": 0,
|
||||
"min_value_warning": "-0.0001",
|
||||
"max_value_warning": "5.0",
|
||||
"visible": false,
|
||||
"inherit": false,
|
||||
"enabled": "retraction_enable"
|
||||
@ -707,6 +732,8 @@
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 1.5,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "10",
|
||||
"visible": false,
|
||||
"inherit": false,
|
||||
"enabled": "retraction_enable"
|
||||
@ -715,6 +742,8 @@
|
||||
"label": "Maximum Retraction Count",
|
||||
"description": "This setting limits the number of retractions occurring within the Minimum Extrusion Distance Window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues.",
|
||||
"default": 8,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "20",
|
||||
"type": "int",
|
||||
"visible": false,
|
||||
"inherit": false,
|
||||
@ -726,6 +755,8 @@
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 4.5,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "retraction_amount * 2",
|
||||
"visible": false,
|
||||
"inherit_function": "retraction_amount",
|
||||
"enabled": "retraction_enable"
|
||||
@ -736,6 +767,8 @@
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 0,
|
||||
"min_value_warning": "-0.0001",
|
||||
"max_value_warning": "10",
|
||||
"visible": false,
|
||||
"inherit": false,
|
||||
"enabled": "retraction_enable"
|
||||
@ -829,6 +862,8 @@
|
||||
"unit": "mm/s",
|
||||
"type": "float",
|
||||
"default": 60,
|
||||
"min_value": "0.1",
|
||||
"max_value_warning": "150",
|
||||
"visible": false,
|
||||
"inherit": true,
|
||||
"enabled": "support_roof_enable"
|
||||
@ -839,6 +874,8 @@
|
||||
"unit": "mm/s",
|
||||
"type": "float",
|
||||
"default": 40,
|
||||
"min_value": "0.1",
|
||||
"max_value_warning": "150",
|
||||
"visible": false,
|
||||
"inherit": false,
|
||||
"enabled": "support_roof_enable",
|
||||
@ -853,9 +890,9 @@
|
||||
"description": "The speed at which travel moves are done. A well-built Ultimaker can reach speeds of 250mm/s, but some machines might have misaligned layers then.",
|
||||
"unit": "mm/s",
|
||||
"type": "float",
|
||||
"default": 120,
|
||||
"min_value": "0.1",
|
||||
"max_value_warning": "300",
|
||||
"default": 120,
|
||||
"inherit_function": "speed_print if magic_spiralize else 120"
|
||||
},
|
||||
"speed_layer_0": {
|
||||
@ -863,7 +900,6 @@
|
||||
"description": "The print speed for the bottom layer: You want to print the first layer slower so it sticks better to the printer bed.",
|
||||
"unit": "mm/s",
|
||||
"type": "float",
|
||||
"min_value": "0.1",
|
||||
"default": 30,
|
||||
"visible": false
|
||||
},
|
||||
@ -872,8 +908,9 @@
|
||||
"description": "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt at a different speed.",
|
||||
"unit": "mm/s",
|
||||
"type": "float",
|
||||
"min_value": "0.1",
|
||||
"default": 30,
|
||||
"min_value": "0.1",
|
||||
"max_value_warning": "300",
|
||||
"visible": false,
|
||||
"inherit_function": "speed_layer_0"
|
||||
},
|
||||
@ -881,8 +918,9 @@
|
||||
"label": "Number of Slower Layers",
|
||||
"description": "The first few layers are printed slower than the rest of the object, this to get better adhesion to the printer bed and improve the overall success rate of prints. The speed is gradually increased over these layers. 4 layers of speed-up is generally right for most materials and printers.",
|
||||
"type": "int",
|
||||
"min_value": "0",
|
||||
"default": 4,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "300",
|
||||
"visible": false
|
||||
}
|
||||
}
|
||||
@ -913,6 +951,8 @@
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 1.5,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "machine_nozzle_tip_outer_diameter * 5",
|
||||
"visible": false,
|
||||
"inherit": false,
|
||||
"enabled": "retraction_combing"
|
||||
@ -932,6 +972,8 @@
|
||||
"unit": "mm³",
|
||||
"type": "float",
|
||||
"default": 0.064,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "2.0",
|
||||
"visible": false,
|
||||
"inherit": false,
|
||||
"enabled": "coasting_enable"
|
||||
@ -943,6 +985,7 @@
|
||||
"type": "float",
|
||||
"default": 0.8,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "10.0",
|
||||
"visible": false,
|
||||
"enabled": "coasting_enable"
|
||||
},
|
||||
@ -952,6 +995,8 @@
|
||||
"unit": "%",
|
||||
"type": "float",
|
||||
"default": 90,
|
||||
"min_value": "0.0001",
|
||||
"max_value_warning": "100",
|
||||
"visible": false,
|
||||
"inherit": false,
|
||||
"enabled": "coasting_enable"
|
||||
@ -1009,16 +1054,18 @@
|
||||
"description": "The height at which the fan is turned on completely. For the layers below this the fan speed is scaled linearly with the fan off for the first layer.",
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"min_value": "0",
|
||||
"default": 0.5,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "10.0",
|
||||
"visible": false,
|
||||
"children": {
|
||||
"cool_fan_full_layer": {
|
||||
"label": "Fan Full on at Layer",
|
||||
"description": "The layer number at which the fan is turned on completely. For the layers below this the fan speed is scaled linearly with the fan off for the first layer.",
|
||||
"type": "int",
|
||||
"min_value": "0",
|
||||
"default": 4,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "100",
|
||||
"visible": false,
|
||||
"inherit_function": "int((parent_value - layer_height_0 + 0.001) / layer_height)"
|
||||
}
|
||||
@ -1029,8 +1076,9 @@
|
||||
"description": "The minimum time spent in a layer: Gives the layer time to cool down before the next one is put on top. If a layer would print in less time, then the printer will slow down to make sure it has spent at least this many seconds printing the layer.",
|
||||
"unit": "sec",
|
||||
"type": "float",
|
||||
"min_value": "0",
|
||||
"default": 5,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "600",
|
||||
"visible": false
|
||||
},
|
||||
"cool_min_layer_time_fan_speed_max": {
|
||||
@ -1038,8 +1086,9 @@
|
||||
"description": "The minimum time spent in a layer which will cause the fan to be at maximum speed. The fan speed increases linearly from minimum fan speed for layers taking the minimum layer time to maximum fan speed for layers taking the time specified here.",
|
||||
"unit": "sec",
|
||||
"type": "float",
|
||||
"min_value": "0",
|
||||
"default": 10,
|
||||
"min_value": "cool_min_layer_time",
|
||||
"max_value_warning": "600",
|
||||
"visible": false
|
||||
},
|
||||
"cool_min_speed": {
|
||||
@ -1048,6 +1097,8 @@
|
||||
"unit": "mm/s",
|
||||
"type": "float",
|
||||
"default": 10,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "100",
|
||||
"visible": false
|
||||
},
|
||||
"cool_lift_head": {
|
||||
@ -1162,8 +1213,10 @@
|
||||
"label": "Minimal Width",
|
||||
"description": "Minimal width to which conical support reduces the support areas. Small widths can cause the base of the support to not act well as foundation for support above.",
|
||||
"unit": "mm",
|
||||
"min_value": "0",
|
||||
"default": 3.0,
|
||||
"min_value": "0",
|
||||
"min_value_warning": "machine_nozzle_size * 3",
|
||||
"max_value_warning": "100.0",
|
||||
"type": "float",
|
||||
"visible": false,
|
||||
"enabled": "support_enable"
|
||||
@ -1174,6 +1227,8 @@
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 0.3,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "1.0",
|
||||
"visible": false,
|
||||
"enabled": "support_enable"
|
||||
},
|
||||
@ -1182,7 +1237,9 @@
|
||||
"description": "The maximum distance between support blocks in the X/Y directions, so that the blocks will merge into a single block.",
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 2,
|
||||
"default": 2.0,
|
||||
"min_value_warning": "0",
|
||||
"max_value_warning": "10",
|
||||
"visible": false,
|
||||
"enabled": "support_enable"
|
||||
},
|
||||
@ -1192,6 +1249,8 @@
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 0.2,
|
||||
"min_value_warning": "-0.5",
|
||||
"max_value_warning": "5.0",
|
||||
"visible": false,
|
||||
"enabled": "support_enable"
|
||||
},
|
||||
@ -1201,6 +1260,8 @@
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 0.6,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "1.0",
|
||||
"visible": false,
|
||||
"enabled": "support_enable"
|
||||
},
|
||||
@ -1218,6 +1279,8 @@
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 1,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "10",
|
||||
"visible": false,
|
||||
"enabled": "support_roof_enable"
|
||||
},
|
||||
@ -1227,6 +1290,8 @@
|
||||
"unit": "%",
|
||||
"type": "float",
|
||||
"default": 100,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "100",
|
||||
"enabled":"support_roof_enable",
|
||||
"children": {
|
||||
"support_roof_line_distance": {
|
||||
@ -1235,6 +1300,7 @@
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 0.4,
|
||||
"min_value": "0",
|
||||
"visible": false,
|
||||
"inherit_function": "0 if parent_value == 0 else (support_roof_line_width * 100) / parent_value",
|
||||
"enabled": "support_roof_enable"
|
||||
@ -1270,6 +1336,8 @@
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 1,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "10",
|
||||
"visible": false,
|
||||
"enabled": "support_enable"
|
||||
},
|
||||
@ -1279,6 +1347,9 @@
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 1,
|
||||
"min_value": "0",
|
||||
"min_value_warning": "support_minimal_diameter",
|
||||
"max_value_warning": "10",
|
||||
"visible": false,
|
||||
"enabled": "support_enable"
|
||||
},
|
||||
@ -1364,6 +1435,8 @@
|
||||
"description": "Multiple skirt lines help to prime your extrusion better for small objects. Setting this to 0 will disable the skirt.",
|
||||
"type": "int",
|
||||
"default": 1,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "10",
|
||||
"enabled": "adhesion_type == \"skirt\""
|
||||
},
|
||||
"skirt_gap": {
|
||||
@ -1372,6 +1445,8 @@
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 3,
|
||||
"min_value_warning": "0",
|
||||
"max_value_warning": "100",
|
||||
"enabled": "adhesion_type == \"skirt\""
|
||||
},
|
||||
"skirt_minimal_length": {
|
||||
@ -1380,6 +1455,9 @@
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 250,
|
||||
"min_value": "0",
|
||||
"min_value_warning": "25",
|
||||
"max_value_warning": "2500",
|
||||
"enabled": "adhesion_type == \"skirt\""
|
||||
},
|
||||
"brim_width": {
|
||||
@ -1398,6 +1476,7 @@
|
||||
"type": "int",
|
||||
"default": 13,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "300",
|
||||
"inherit_function": "math.ceil(parent_value / skirt_line_width)",
|
||||
"enabled": "adhesion_type == \"brim\""
|
||||
}
|
||||
@ -1409,6 +1488,8 @@
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 5,
|
||||
"min_value_warning": "0",
|
||||
"max_value_warning": "10",
|
||||
"enabled": "adhesion_type == \"raft\""
|
||||
},
|
||||
"raft_airgap": {
|
||||
@ -1417,6 +1498,8 @@
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 0.35,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "1.0",
|
||||
"enabled": "adhesion_type == \"raft\""
|
||||
},
|
||||
"raft_surface_layers": {
|
||||
@ -1424,6 +1507,8 @@
|
||||
"description": "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the object sits on. 2 layers result in a smoother top surface than 1.",
|
||||
"type": "int",
|
||||
"default": 2,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "20",
|
||||
"enabled": "adhesion_type == \"raft\""
|
||||
},
|
||||
"raft_surface_thickness": {
|
||||
@ -1432,6 +1517,8 @@
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 0.1,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "2.0",
|
||||
"enabled": "adhesion_type == \"raft\""
|
||||
},
|
||||
"raft_surface_line_width": {
|
||||
@ -1440,6 +1527,8 @@
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 0.3,
|
||||
"min_value": "0.0001",
|
||||
"max_value_warning": "machine_nozzle_size * 2",
|
||||
"enabled": "adhesion_type == \"raft\""
|
||||
},
|
||||
"raft_surface_line_spacing": {
|
||||
@ -1448,6 +1537,8 @@
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 0.3,
|
||||
"min_value": "0.0001",
|
||||
"max_value_warning": "5.0",
|
||||
"enabled": "adhesion_type == \"raft\"",
|
||||
"inherit_function": "raft_surface_line_width"
|
||||
},
|
||||
@ -1457,6 +1548,8 @@
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 0.27,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "5.0",
|
||||
"enabled": "adhesion_type == \"raft\""
|
||||
},
|
||||
"raft_interface_line_width": {
|
||||
@ -1465,6 +1558,8 @@
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 1,
|
||||
"min_value": "0.0001",
|
||||
"max_value_warning": "machine_nozzle_size * 2",
|
||||
"enabled": "adhesion_type == \"raft\""
|
||||
},
|
||||
"raft_interface_line_spacing": {
|
||||
@ -1473,6 +1568,8 @@
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 1.0,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "15.0",
|
||||
"enabled": "adhesion_type == \"raft\""
|
||||
},
|
||||
"raft_base_thickness": {
|
||||
@ -1481,6 +1578,8 @@
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 0.3,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "5.0",
|
||||
"enabled": "adhesion_type == \"raft\""
|
||||
},
|
||||
"raft_base_line_width": {
|
||||
@ -1489,6 +1588,8 @@
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 1,
|
||||
"min_value": "0.0001",
|
||||
"max_value_warning": "machine_nozzle_size * 2",
|
||||
"enabled": "adhesion_type == \"raft\""
|
||||
},
|
||||
"raft_base_line_spacing": {
|
||||
@ -1497,6 +1598,8 @@
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"default": 3.0,
|
||||
"min_value": "0.0001",
|
||||
"max_value_warning": "100",
|
||||
"enabled": "adhesion_type == \"raft\""
|
||||
},
|
||||
"raft_speed": {
|
||||
@ -1505,6 +1608,8 @@
|
||||
"unit": "mm/s",
|
||||
"type": "float",
|
||||
"default": 30,
|
||||
"min_value": "0.1",
|
||||
"max_value_warning": "200",
|
||||
"enabled": "adhesion_type == \"raft\"",
|
||||
"inherit_function": "speed_print / 60 * 30",
|
||||
"children": {
|
||||
@ -1514,6 +1619,8 @@
|
||||
"unit": "mm/s",
|
||||
"type": "float",
|
||||
"default": 30,
|
||||
"min_value": "0.1",
|
||||
"max_value_warning": "100",
|
||||
"enabled": "adhesion_type == \"raft\"",
|
||||
"inherit_function": "parent_value"
|
||||
},
|
||||
@ -1523,6 +1630,8 @@
|
||||
"unit": "mm/s",
|
||||
"type": "float",
|
||||
"default": 15,
|
||||
"min_value": "0.1",
|
||||
"max_value_warning": "150",
|
||||
"enabled": "adhesion_type == \"raft\"",
|
||||
"inherit_function": "0.5 * parent_value"
|
||||
},
|
||||
@ -1532,6 +1641,8 @@
|
||||
"unit": "mm/s",
|
||||
"type": "float",
|
||||
"default": 15,
|
||||
"min_value": "0.1",
|
||||
"max_value_warning": "200",
|
||||
"enabled": "adhesion_type == \"raft\"",
|
||||
"inherit_function": "0.5 * parent_value"
|
||||
}
|
||||
@ -1713,6 +1824,8 @@
|
||||
"type": "float",
|
||||
"unit": "mm",
|
||||
"default": 0.3,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "wall_line_width_0",
|
||||
"visible": false,
|
||||
"enabled": "magic_fuzzy_skin_enabled"
|
||||
},
|
||||
@ -1722,6 +1835,9 @@
|
||||
"type": "float",
|
||||
"unit": "1/mm",
|
||||
"default": 1.25,
|
||||
"min_value_warning": "0.1",
|
||||
"max_value_warning": "10",
|
||||
"max_value": "10000",
|
||||
"visible": false,
|
||||
"enabled": "magic_fuzzy_skin_enabled",
|
||||
"children": {
|
||||
@ -1731,6 +1847,8 @@
|
||||
"type": "float",
|
||||
"unit": "mm",
|
||||
"default": 0.8,
|
||||
"min_value_warning": "0.0001",
|
||||
"max_value_warning": "10",
|
||||
"inherit_function": "1/parent_value",
|
||||
"visible": false,
|
||||
"enabled": "magic_fuzzy_skin_enabled"
|
||||
@ -1750,6 +1868,8 @@
|
||||
"type": "float",
|
||||
"unit": "mm",
|
||||
"default": 3,
|
||||
"min_value": "0.0001",
|
||||
"max_value_warning": "20",
|
||||
"visible": false,
|
||||
"enabled": "wireframe_enabled"
|
||||
},
|
||||
@ -1759,6 +1879,9 @@
|
||||
"type": "float",
|
||||
"unit": "mm",
|
||||
"default": 3,
|
||||
"min_value": "0",
|
||||
"min_value_warning": "machine_nozzle_size",
|
||||
"max_value_warning": "20",
|
||||
"visible": false,
|
||||
"enabled": "wireframe_enabled",
|
||||
"inherit_function": "wireframe_height"
|
||||
@ -1769,6 +1892,8 @@
|
||||
"unit": "mm/s",
|
||||
"type": "float",
|
||||
"default": 5,
|
||||
"min_value": "0.1",
|
||||
"max_value_warning": "50",
|
||||
"visible": false,
|
||||
"enabled": "wireframe_enabled",
|
||||
"children": {
|
||||
@ -1778,6 +1903,8 @@
|
||||
"unit": "mm/s",
|
||||
"type": "float",
|
||||
"default": 5,
|
||||
"min_value": "0.1",
|
||||
"max_value_warning": "50",
|
||||
"visible": false,
|
||||
"inherit": true,
|
||||
"enabled": "wireframe_enabled"
|
||||
@ -1788,6 +1915,8 @@
|
||||
"unit": "mm/s",
|
||||
"type": "float",
|
||||
"default": 5,
|
||||
"min_value": "0.1",
|
||||
"max_value_warning": "50",
|
||||
"visible": false,
|
||||
"inherit": true,
|
||||
"enabled": "wireframe_enabled"
|
||||
@ -1798,6 +1927,8 @@
|
||||
"unit": "mm/s",
|
||||
"type": "float",
|
||||
"default": 5,
|
||||
"min_value": "0.1",
|
||||
"max_value_warning": "50",
|
||||
"visible": false,
|
||||
"inherit": true,
|
||||
"enabled": "wireframe_enabled"
|
||||
@ -1808,6 +1939,8 @@
|
||||
"unit": "mm/s",
|
||||
"type": "float",
|
||||
"default": 5,
|
||||
"min_value": "0.1",
|
||||
"max_value_warning": "100",
|
||||
"visible": false,
|
||||
"inherit": true,
|
||||
"enabled": "wireframe_enabled"
|
||||
@ -1820,7 +1953,7 @@
|
||||
"unit": "%",
|
||||
"default": 100,
|
||||
"min_value": "0",
|
||||
"max_value": "100",
|
||||
"max_value_warning": "100",
|
||||
"type": "float",
|
||||
"visible": false,
|
||||
"enabled": "wireframe_enabled",
|
||||
@ -1830,6 +1963,8 @@
|
||||
"description": "Flow compensation when going up or down. Only applies to Wire Printing.",
|
||||
"unit": "%",
|
||||
"default": 100,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "100",
|
||||
"type": "float",
|
||||
"visible": false,
|
||||
"enabled": "wireframe_enabled"
|
||||
@ -1839,6 +1974,8 @@
|
||||
"description": "Flow compensation when printing flat lines. Only applies to Wire Printing.",
|
||||
"unit": "%",
|
||||
"default": 100,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "100",
|
||||
"type": "float",
|
||||
"visible": false,
|
||||
"enabled": "wireframe_enabled"
|
||||
@ -1851,6 +1988,8 @@
|
||||
"unit": "sec",
|
||||
"type": "float",
|
||||
"default": 0,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "1",
|
||||
"visible": false,
|
||||
"enabled": "wireframe_enabled"
|
||||
},
|
||||
@ -1860,6 +1999,8 @@
|
||||
"unit": "sec",
|
||||
"type": "float",
|
||||
"default": 0,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "1",
|
||||
"visible": false,
|
||||
"enabled": "wireframe_enabled"
|
||||
},
|
||||
@ -1869,6 +2010,8 @@
|
||||
"unit": "sec",
|
||||
"type": "float",
|
||||
"default": 0.1,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "0.5",
|
||||
"visible": false,
|
||||
"enabled": "wireframe_enabled"
|
||||
},
|
||||
@ -1878,6 +2021,8 @@
|
||||
"type": "float",
|
||||
"unit": "mm",
|
||||
"default": 0.3,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "5.0",
|
||||
"visible": false,
|
||||
"enabled": "wireframe_enabled"
|
||||
},
|
||||
@ -1887,6 +2032,8 @@
|
||||
"type": "float",
|
||||
"unit": "mm",
|
||||
"default": 0.6,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "2.0",
|
||||
"visible": false,
|
||||
"enabled": "wireframe_enabled"
|
||||
},
|
||||
@ -1896,6 +2043,8 @@
|
||||
"type": "float",
|
||||
"unit": "mm",
|
||||
"default": 0.5,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "wireframe_height",
|
||||
"visible": false,
|
||||
"enabled": "wireframe_enabled"
|
||||
},
|
||||
@ -1905,6 +2054,8 @@
|
||||
"type": "float",
|
||||
"unit": "mm",
|
||||
"default": 0.6,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "wireframe_height",
|
||||
"visible": false,
|
||||
"enabled": "wireframe_enabled"
|
||||
},
|
||||
@ -1926,9 +2077,9 @@
|
||||
"description": "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing.",
|
||||
"type": "float",
|
||||
"unit": "%",
|
||||
"min_value": "0",
|
||||
"max_value": "100",
|
||||
"default": 20,
|
||||
"min_value": "0",
|
||||
"max_value": "100",
|
||||
"visible": false,
|
||||
"enabled": "wireframe_enabled"
|
||||
},
|
||||
@ -1938,6 +2089,8 @@
|
||||
"type": "float",
|
||||
"unit": "mm",
|
||||
"default": 2,
|
||||
"min_value_warning": "0",
|
||||
"max_value_warning": "wireframe_roof_inset",
|
||||
"visible": false,
|
||||
"enabled": "wireframe_enabled"
|
||||
},
|
||||
@ -1947,6 +2100,8 @@
|
||||
"type": "float",
|
||||
"unit": "mm",
|
||||
"default": 0.8,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "10",
|
||||
"visible": false,
|
||||
"enabled": "wireframe_enabled"
|
||||
},
|
||||
@ -1956,6 +2111,8 @@
|
||||
"type": "float",
|
||||
"unit": "sec",
|
||||
"default": 0.2,
|
||||
"min_value": "0",
|
||||
"max_value_warning": "2.0",
|
||||
"visible": false,
|
||||
"enabled": "wireframe_enabled"
|
||||
},
|
||||
@ -1965,6 +2122,8 @@
|
||||
"type": "float",
|
||||
"unit": "mm",
|
||||
"default": 1,
|
||||
"min_value_warning": "0",
|
||||
"max_value_warning": "10.0",
|
||||
"visible": false,
|
||||
"enabled": "wireframe_enabled"
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user