mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-14 14:06:24 +08:00
Merge branch 'master' of https://github.com/Ultimaker/Cura
This commit is contained in:
commit
b587be273f
@ -4,7 +4,15 @@
|
||||
"inherits": "fdmprinter.json",
|
||||
|
||||
"machine_settings": {
|
||||
"extruder_nr": { "default": 0 },
|
||||
"extruder_nr": {
|
||||
"label": "Extruder",
|
||||
"description": "The extruder train used for printing. This is used in multi-extrusion.",
|
||||
"type": "int",
|
||||
"default": 0,
|
||||
"min_value": 0,
|
||||
"max_value": 16,
|
||||
"inherit_function": "extruder_nr"
|
||||
},
|
||||
|
||||
"machine_use_extruder_offset_to_offset_coords": { "default": false },
|
||||
|
||||
|
@ -306,7 +306,7 @@
|
||||
"default": 6,
|
||||
"type": "int",
|
||||
"visible": false,
|
||||
"inherit_function": "math.ceil(parent_value / layer_height)"
|
||||
"inherit_function": "0 if infill_sparse_density == 100 else math.ceil(parent_value / layer_height)"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -326,7 +326,7 @@
|
||||
"default": 6,
|
||||
"type": "int",
|
||||
"visible": false,
|
||||
"inherit_function": "math.ceil(parent_value / layer_height)"
|
||||
"inherit_function": "999999 if infill_sparse_density == 100 else math.ceil(parent_value / layer_height)"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -418,6 +418,18 @@
|
||||
"type": "float",
|
||||
"default": 0,
|
||||
"visible": false
|
||||
},
|
||||
"z_seam_type": {
|
||||
"label": "Z Seam Alignment",
|
||||
"description": "Starting point of each part in a layer. When parts in consecutive layers start at the same point a vertical seam may show on the print. When aligning these at the back, the seam is easiest to remove. When placed randomly the inaccuracies at the part start will be less noticable. When taking the shortest path the print will be more quick.",
|
||||
"type": "enum",
|
||||
"options": [
|
||||
"Back",
|
||||
"Shortest",
|
||||
"Random"
|
||||
],
|
||||
"default": "Shortest",
|
||||
"visible": false
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@ -13,15 +13,6 @@
|
||||
|
||||
"machine_extruder_trains": [
|
||||
{
|
||||
"extruder_nr": {
|
||||
"label": "Extruder",
|
||||
"description": "The extruder train used for printing. This is used in multi-extrusion.",
|
||||
"type": "int",
|
||||
"default": 0,
|
||||
"min_value": 0,
|
||||
"max_value": 16,
|
||||
"inherit_function": "extruder_nr"
|
||||
},
|
||||
"machine_nozzle_size": {
|
||||
"default": 0.4
|
||||
},
|
||||
|
@ -18,15 +18,6 @@
|
||||
|
||||
"machine_extruder_trains": [
|
||||
{
|
||||
"extruder_nr": {
|
||||
"label": "Extruder",
|
||||
"description": "The extruder train used for printing. This is used in multi-extrusion.",
|
||||
"type": "int",
|
||||
"default": 0,
|
||||
"min_value": 0,
|
||||
"max_value": 16,
|
||||
"inherit_function": "extruder_nr"
|
||||
},
|
||||
"machine_nozzle_size": {
|
||||
"default": 0.4
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user