This commit is contained in:
Jaime van Kessel 2016-03-04 10:59:40 +01:00
commit a9bd73f32a
133 changed files with 2246 additions and 1502 deletions

View file

@ -182,7 +182,7 @@
"machine": {
"label": "Machine",
"visible": true,
"icon": "category_layer_height",
"icon": "category_machine",
"settings": {
"machine_nozzle_size": {
"label": "Nozzle Diameter",
@ -210,8 +210,8 @@
"default": 0.1,
"min_value": "0.001",
"min_value_warning": "0.04",
"max_value_warning": "0.32",
"global_only": "print_sequence != \"one_at_a_time\""
"max_value_warning": "0.8 * machine_nozzle_size",
"global_only": "True"
},
"layer_height_0": {
"label": "Initial Layer Height",
@ -221,9 +221,9 @@
"default": 0.3,
"min_value": "0.001",
"min_value_warning": "0.04",
"max_value_warning": "0.32",
"max_value_warning": "0.8 * machine_nozzle_size",
"visible": false,
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True"
},
"line_width": {
"label": "Line Width",
@ -231,7 +231,7 @@
"unit": "mm",
"min_value": "0.0001",
"min_value_warning": "0.2",
"max_value_warning": "5",
"max_value_warning": "2 * machine_nozzle_size",
"default": 0.4,
"type": "float",
"visible": false,
@ -281,7 +281,8 @@
"max_value_warning": "5",
"default": 0.4,
"type": "float",
"visible": false
"visible": false,
"global_only": true
},
"skin_line_width": {
"label": "Top/bottom line width",
@ -315,7 +316,8 @@
"default": 0.4,
"type": "float",
"visible": false,
"enabled": "support_enable"
"enabled": "support_enable",
"global_only": true
},
"support_roof_line_width": {
"label": "Support Roof line width",
@ -326,7 +328,8 @@
"max_value_warning": "machine_nozzle_size * 2",
"type": "float",
"visible": false,
"enabled": "support_roof_enable"
"enabled": "support_roof_enable",
"global_only": true
}
}
}
@ -346,6 +349,7 @@
"min_value": "0",
"min_value_warning": "0.2",
"max_value_warning": "5",
"visible": false,
"children": {
"wall_thickness": {
"label": "Wall Thickness",
@ -356,7 +360,7 @@
"min_value_warning": "0.2",
"max_value_warning": "5",
"type": "float",
"visible": false,
"visible": true,
"children": {
"wall_line_count": {
"label": "Wall Line Count",
@ -365,7 +369,7 @@
"min_value": "0",
"type": "int",
"visible": false,
"inherit_function": "max(1, round((wall_thickness - wall_line_width_0) / wall_line_width_x) + 1)"
"inherit_function": "1 if magic_spiralize else max(1, round((wall_thickness - wall_line_width_0) / wall_line_width_x) + 1)"
}
}
},
@ -386,7 +390,7 @@
"max_value": "5",
"min_value_warning": "0.6",
"type": "float",
"visible": false,
"visible": true,
"children": {
"top_thickness": {
"label": "Top Thickness",
@ -463,7 +467,7 @@
"label": "Compensate Wall Overlaps",
"description": "Compensate the flow for parts of a wall being laid down where there already is a piece of a wall. These overlaps occur in thin pieces in a model. Gcode generation might be slowed down considerably.",
"type": "boolean",
"default": false,
"default": true,
"visible": false
},
"fill_perimeter_gaps": {
@ -630,7 +634,9 @@
"description": "Change the temperature for each layer automatically with the average flow speed of that layer.",
"type": "boolean",
"default": false,
"visible": true
"visible": false,
"enabled": "False",
"global_only": true
},
"material_print_temperature": {
"label": "Printing Temperature",
@ -648,7 +654,8 @@
"unit": "",
"type": "string",
"default": "[[3.5,200],[7.0,240]]",
"enabled": "material_flow_dependent_temperature"
"enabled": "material_flow_dependent_temperature",
"global_only": true
},
"material_standby_temperature": {
"label": "Standby Temperature",
@ -658,7 +665,7 @@
"default": 150,
"min_value": "0",
"max_value_warning": "260",
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": true
},
"material_extrusion_cool_down_speed": {
"label": "Extrusion Cool Down Speed Modifier",
@ -668,7 +675,9 @@
"default": 0.5,
"min_value": "0",
"max_value_warning": "10.0",
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True",
"enabled": "material_flow_dependent_temperature or machine_extruder_count > 1",
"visible": false
},
"material_bed_temperature": {
"label": "Bed Temperature",
@ -679,7 +688,7 @@
"min_value": "0",
"max_value_warning": "260",
"enabled": "machine_heated_bed",
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True"
},
"material_diameter": {
"label": "Diameter",
@ -690,7 +699,7 @@
"min_value": "0.0001",
"min_value_warning": "0.4",
"max_value_warning": "3.5",
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True"
},
"material_flow": {
"label": "Flow",
@ -786,7 +795,7 @@
"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",
"max_value_warning": "100",
"type": "int",
"visible": false,
"inherit": false,
@ -909,7 +918,8 @@
"max_value_warning": "150",
"visible": false,
"inherit": true,
"enabled": "support_roof_enable"
"enabled": "support_roof_enable",
"global_only": true
},
"speed_support_roof": {
"label": "Support Roof Speed",
@ -922,7 +932,8 @@
"visible": false,
"inherit": false,
"enabled": "support_roof_enable",
"inherit_function": "parent_value / 60 * 40"
"inherit_function": "parent_value / 60 * 40",
"global_only": true
}
}
}
@ -936,7 +947,8 @@
"default": 120,
"min_value": "0.1",
"max_value_warning": "300",
"inherit_function": "speed_print if magic_spiralize else 120"
"inherit_function": "speed_print if magic_spiralize else 120",
"global_only": true
},
"speed_layer_0": {
"label": "Bottom Layer Speed",
@ -957,7 +969,8 @@
"min_value": "0.1",
"max_value_warning": "300",
"visible": false,
"inherit_function": "speed_layer_0"
"inherit_function": "speed_layer_0",
"global_only": true
},
"speed_slowdown_layers": {
"label": "Number of Slower Layers",
@ -966,7 +979,8 @@
"default": 4,
"min_value": "0",
"max_value_warning": "300",
"visible": false
"visible": false,
"global_only": true
}
}
},
@ -980,7 +994,8 @@
"description": "Combing keeps the head within the interior of the print whenever possible when traveling from one part of the print to another and does not use retraction. If combing is disabled, the print head moves straight from the start point to the end point and it will always retract.",
"type": "boolean",
"default": true,
"visible": false
"visible": false,
"global_only": true
},
"travel_avoid_other_parts": {
"label": "Avoid Printed Parts",
@ -989,7 +1004,7 @@
"default": true,
"visible": false,
"enabled": "retraction_combing",
"global_only": "print_sequence != \"one_at_a_time\"",
"global_only": "True",
"children": {
"travel_avoid_distance": {
"label": "Avoid Distance",
@ -1002,7 +1017,7 @@
"visible": false,
"inherit": false,
"enabled": "retraction_combing",
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True"
}
}
},
@ -1011,7 +1026,8 @@
"description": "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to lay down the last piece of the extrusion path in order to reduce stringing.",
"type": "boolean",
"default": false,
"visible": true
"visible": false,
"global_only": true
},
"coasting_volume": {
"label": "Coasting Volume",
@ -1023,7 +1039,8 @@
"max_value_warning": "2.0",
"visible": false,
"inherit": false,
"enabled": "coasting_enable"
"enabled": "coasting_enable",
"global_only": true
},
"coasting_min_volume": {
"label": "Minimal Volume Before Coasting",
@ -1034,7 +1051,8 @@
"min_value": "0",
"max_value_warning": "10.0",
"visible": false,
"enabled": "coasting_enable"
"enabled": "coasting_enable",
"global_only": true
},
"coasting_speed": {
"label": "Coasting Speed",
@ -1046,7 +1064,8 @@
"max_value_warning": "100",
"visible": false,
"inherit": false,
"enabled": "coasting_enable"
"enabled": "coasting_enable",
"global_only": true
}
}
},
@ -1060,7 +1079,7 @@
"description": "Enable the cooling fan during the print. The extra cooling from the cooling fan helps parts with small cross sections that print each layer quickly.",
"type": "boolean",
"default": true,
"global_only": "print_sequence != \"one_at_a_time\"",
"global_only": "True",
"children": {
"cool_fan_speed": {
"label": "Fan Speed",
@ -1072,11 +1091,11 @@
"default": 100,
"visible": false,
"inherit_function": "100.0 if parent_value else 0.0",
"global_only": "print_sequence != \"one_at_a_time\"",
"global_only": "True",
"children": {
"cool_fan_speed_min": {
"label": "Normal Fan Speed",
"description": "Normally the fan runs at the minimum fan speed. If a layer takes less than Shortest Layer Time Normal Fan Speed, the fan speed adjusts from Normal Fan Speed towards Maximum Fan Speed.",
"label": "Minimum Fan Speed",
"description": "Normally the fan runs at the minimum fan speed. If the layer is slowed down due to minimum layer time, the fan speed adjusts between minimum and maximum fan speed.",
"unit": "%",
"type": "float",
"min_value": "0",
@ -1084,11 +1103,11 @@
"inherit_function": "parent_value",
"default": 100,
"visible": false,
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True"
},
"cool_fan_speed_max": {
"label": "Maximum Fan Speed",
"description": "If a layer is slowed down due to minimum layer time, the fan speed will be the Maximum Fan Speed.",
"description": "Normally the fan runs at the minimum fan speed. If the layer is slowed down due to minimum layer time, the fan speed adjusts between minimum and maximum fan speed.",
"unit": "%",
"type": "float",
"min_value": "max(0, cool_fan_speed_min)",
@ -1096,33 +1115,33 @@
"inherit": false,
"default": 100,
"visible": false,
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True"
}
}
}
}
},
"cool_fan_full_at_height": {
"label": "Slow Fan Down Below Height",
"description": "The height at which the fan is set to Normal Fan Speed. For the layers below this the fan speed is scaled linearly with the fan off on the first layer.",
"label": "Fan Full on at Height",
"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",
"default": 0.5,
"min_value": "0",
"max_value_warning": "10.0",
"visible": false,
"global_only": "print_sequence != \"one_at_a_time\"",
"global_only": "True",
"children": {
"cool_fan_full_layer": {
"label": "Slow Fan Down Below Layer",
"description": "The layer number at which the fan is set to Normal Fan Speed. For the layers below this the fan speed is scaled linearly with the fan off on the first 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",
"default": 4,
"min_value": "0",
"max_value_warning": "100",
"visible": false,
"inherit_function": "int((parent_value - layer_height_0 + 0.001) / layer_height)",
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True"
}
}
},
@ -1135,18 +1154,18 @@
"min_value": "0",
"max_value_warning": "600",
"visible": false,
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True"
},
"cool_min_layer_time_fan_speed_max": {
"label": "Shortest Layer Time Normal Fan Speed",
"description": "The minimum time spent in a layer which will cause the fan to be at normal speed. All layers taking shorter than this time will get increased fan speeds, up to Maximum Fan Speed for layers taking Minmal Layer Time. All layers taking longer than this time will have Normal Fan Speed.",
"label": "Minimum Layer Time Full Fan Speed",
"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",
"default": 10,
"min_value": "cool_min_layer_time",
"max_value_warning": "600",
"visible": false,
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True"
},
"cool_min_speed": {
"label": "Minimum Speed",
@ -1157,7 +1176,7 @@
"min_value": "0",
"max_value_warning": "100",
"visible": false,
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True"
},
"cool_lift_head": {
"label": "Lift Head",
@ -1165,13 +1184,14 @@
"type": "boolean",
"default": false,
"visible": false,
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True"
},
"draft_shield_enabled": {
"label": "Enable Draft Shield",
"description": "Enable exterior draft shield. This will create a wall around the object which traps (hot) air and shields against gusts of wind. Especially useful for materials which warp easily.",
"type": "boolean",
"default": false
"default": false,
"global_only": true
},
"draft_shield_dist": {
"label": "Draft Shield X/Y Distance",
@ -1182,7 +1202,8 @@
"max_value_warning": "100",
"default": 10,
"visible": false,
"enabled": "draft_shield_enabled"
"enabled": "draft_shield_enabled",
"global_only": true
},
"draft_shield_height_limitation": {
"label": "Draft Shield Limitation",
@ -1194,7 +1215,8 @@
},
"default": "full",
"visible": false,
"enabled": "draft_shield_enabled"
"enabled": "draft_shield_enabled",
"global_only": true
},
"draft_shield_height": {
"label": "Draft Shield Height",
@ -1206,7 +1228,8 @@
"default": 0,
"inherit_function": "9999 if draft_shield_height_limitation == 'full' and draft_shield_enabled else 0.0",
"visible": false,
"enabled": "draft_shield_height_limitation == \"limited\""
"enabled": "draft_shield_height_limitation == \"limited\"",
"global_only": true
}
}
},
@ -1219,7 +1242,7 @@
"label": "Enable Support",
"description": "Enable exterior support structures. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air.",
"type": "boolean",
"default": true
"default": false
},
"support_type": {
"label": "Placement",
@ -1239,7 +1262,7 @@
"type": "float",
"min_value": "0",
"max_value": "90",
"default": 60,
"default": 50,
"visible": false,
"enabled": "support_enable"
},
@ -1304,6 +1327,8 @@
"unit": "°",
"type": "float",
"min_value": "-90",
"min_value_warning": "-45",
"max_value_warning": "45",
"max_value": "90",
"default": 30,
"visible": false,
@ -1393,6 +1418,7 @@
"min_value": "0",
"max_value_warning": "100",
"enabled":"support_roof_enable",
"global_only": true,
"children": {
"support_roof_line_distance": {
"label": "Support Roof Line Distance",
@ -1403,7 +1429,8 @@
"min_value": "0",
"visible": false,
"inherit_function": "0 if parent_value == 0 else (support_roof_line_width * 100) / parent_value",
"enabled": "support_roof_enable"
"enabled": "support_roof_enable",
"global_only": true
}
}
},
@ -1420,7 +1447,8 @@
"zigzag": "Zig Zag"
},
"default": "concentric",
"enabled": "support_roof_enable"
"enabled": "support_roof_enable",
"global_only": true
},
"support_use_towers": {
"label": "Use towers",
@ -1446,12 +1474,27 @@
"description": "The diameter of a special tower.",
"unit": "mm",
"type": "float",
"default": 1,
"default": 3.0,
"min_value": "0",
"min_value_warning": "support_minimal_diameter",
"max_value_warning": "10",
"visible": false,
"enabled": "support_enable"
"enabled": "support_enable and support_use_towers",
"children": {
"support_minimal_diameter": {
"label": "Minimum Diameter",
"description": "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower.",
"unit": "mm",
"type": "float",
"default": 3.0,
"min_value": "0",
"max_value_warning": "10",
"max_value": "support_tower_diameter",
"inherit": true,
"visible": false,
"enabled": "support_enable and support_use_towers"
}
}
},
"support_tower_roof_angle": {
"label": "Tower Roof Angle",
@ -1477,7 +1520,8 @@
},
"default": "zigzag",
"visible": false,
"enabled": "support_enable"
"enabled": "support_enable",
"global_only": true
},
"support_connect_zigzags": {
"label": "Connect ZigZags",
@ -1485,7 +1529,8 @@
"type": "boolean",
"default": true,
"visible": false,
"enabled": "support_enable"
"enabled": "support_enable",
"global_only": true
},
"support_infill_rate": {
"label": "Fill Amount",
@ -1497,7 +1542,7 @@
"default": 15,
"visible": false,
"enabled": "support_enable",
"global_only": true,
"children": {
"support_line_distance": {
"label": "Line distance",
@ -1508,7 +1553,8 @@
"default": 2.66,
"visible": false,
"enabled": "support_enable",
"inherit_function": "(support_line_width * 100) / parent_value"
"inherit_function": "(support_line_width * 100) / parent_value",
"global_only": true
}
}
}
@ -1528,7 +1574,8 @@
"brim": "Brim",
"raft": "Raft"
},
"default": "skirt"
"default": "skirt",
"global_only": "True"
},
"skirt_line_count": {
"label": "Skirt Line Count",
@ -1538,7 +1585,8 @@
"min_value": "0",
"max_value_warning": "10",
"enabled": "adhesion_type == \"skirt\"",
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True",
"visible": false
},
"skirt_gap": {
"label": "Skirt Distance",
@ -1549,7 +1597,8 @@
"min_value_warning": "0",
"max_value_warning": "100",
"enabled": "adhesion_type == \"skirt\"",
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True",
"visible": false
},
"skirt_minimal_length": {
"label": "Skirt Minimum Length",
@ -1561,29 +1610,32 @@
"min_value_warning": "25",
"max_value_warning": "2500",
"enabled": "adhesion_type == \"skirt\"",
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True",
"visible": false
},
"brim_width": {
"label": "Brim Width",
"description": "The distance from the model to the end of the brim. A larger brim sticks better to the build platform, but also makes your effective print area smaller.",
"type": "float",
"unit": "mm",
"default": 5.0,
"default": 8.0,
"min_value": "0.0",
"max_value_warning": "100.0",
"enabled": "adhesion_type == \"brim\"",
"global_only": "print_sequence != \"one_at_a_time\"",
"global_only": "True",
"visible": true,
"children": {
"brim_line_count": {
"label": "Brim Line Count",
"description": "The number of lines used for a brim. More lines means a larger brim which sticks better to the build plate, but this also makes your effective print area smaller.",
"type": "int",
"default": 13,
"default": 20,
"min_value": "0",
"max_value_warning": "300",
"inherit_function": "math.ceil(parent_value / skirt_line_width)",
"enabled": "adhesion_type == \"brim\"",
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True",
"visible": false
}
}
},
@ -1595,7 +1647,9 @@
"default": 5,
"min_value_warning": "0",
"max_value_warning": "10",
"enabled": "adhesion_type == \"raft\""
"enabled": "adhesion_type == \"raft\"",
"global_only": "True",
"visible": false
},
"raft_airgap": {
"label": "Raft Air-gap",
@ -1605,7 +1659,9 @@
"default": 0.35,
"min_value": "0",
"max_value_warning": "1.0",
"enabled": "adhesion_type == \"raft\""
"enabled": "adhesion_type == \"raft\"",
"global_only": "True",
"visible": true
},
"raft_surface_layers": {
"label": "Raft Top Layers",
@ -1614,7 +1670,9 @@
"default": 2,
"min_value": "0",
"max_value_warning": "20",
"enabled": "adhesion_type == \"raft\""
"enabled": "adhesion_type == \"raft\"",
"global_only": "True",
"visible": true
},
"raft_surface_thickness": {
"label": "Raft Top Layer Thickness",
@ -1624,7 +1682,9 @@
"default": 0.1,
"min_value": "0",
"max_value_warning": "2.0",
"enabled": "adhesion_type == \"raft\""
"enabled": "adhesion_type == \"raft\"",
"global_only": "True",
"visible": false
},
"raft_surface_line_width": {
"label": "Raft Top Line Width",
@ -1634,7 +1694,9 @@
"default": 0.3,
"min_value": "0.0001",
"max_value_warning": "machine_nozzle_size * 2",
"enabled": "adhesion_type == \"raft\""
"enabled": "adhesion_type == \"raft\"",
"global_only": "True",
"visible": false
},
"raft_surface_line_spacing": {
"label": "Raft Top Spacing",
@ -1645,7 +1707,9 @@
"min_value": "0.0001",
"max_value_warning": "5.0",
"enabled": "adhesion_type == \"raft\"",
"inherit_function": "raft_surface_line_width"
"inherit_function": "raft_surface_line_width",
"global_only": "True",
"visible": false
},
"raft_interface_thickness": {
"label": "Raft Middle Thickness",
@ -1655,7 +1719,9 @@
"default": 0.27,
"min_value": "0",
"max_value_warning": "5.0",
"enabled": "adhesion_type == \"raft\""
"enabled": "adhesion_type == \"raft\"",
"global_only": "True",
"visible": false
},
"raft_interface_line_width": {
"label": "Raft Middle Line Width",
@ -1665,7 +1731,9 @@
"default": 1,
"min_value": "0.0001",
"max_value_warning": "machine_nozzle_size * 2",
"enabled": "adhesion_type == \"raft\""
"enabled": "adhesion_type == \"raft\"",
"global_only": "True",
"visible": false
},
"raft_interface_line_spacing": {
"label": "Raft Middle Spacing",
@ -1675,7 +1743,9 @@
"default": 1.0,
"min_value": "0",
"max_value_warning": "15.0",
"enabled": "adhesion_type == \"raft\""
"enabled": "adhesion_type == \"raft\"",
"global_only": "True",
"visible": false
},
"raft_base_thickness": {
"label": "Raft Base Thickness",
@ -1685,7 +1755,9 @@
"default": 0.3,
"min_value": "0",
"max_value_warning": "5.0",
"enabled": "adhesion_type == \"raft\""
"enabled": "adhesion_type == \"raft\"",
"global_only": "True",
"visible": false
},
"raft_base_line_width": {
"label": "Raft Base Line Width",
@ -1695,7 +1767,9 @@
"default": 1,
"min_value": "0.0001",
"max_value_warning": "machine_nozzle_size * 2",
"enabled": "adhesion_type == \"raft\""
"enabled": "adhesion_type == \"raft\"",
"global_only": "True",
"visible": false
},
"raft_base_line_spacing": {
"label": "Raft Line Spacing",
@ -1705,7 +1779,9 @@
"default": 3.0,
"min_value": "0.0001",
"max_value_warning": "100",
"enabled": "adhesion_type == \"raft\""
"enabled": "adhesion_type == \"raft\"",
"global_only": "True",
"visible": false
},
"raft_speed": {
"label": "Raft Print Speed",
@ -1717,6 +1793,8 @@
"max_value_warning": "200",
"enabled": "adhesion_type == \"raft\"",
"inherit_function": "speed_print / 60 * 30",
"global_only": "True",
"visible": false,
"children": {
"raft_surface_speed": {
"label": "Raft Surface Print Speed",
@ -1727,7 +1805,9 @@
"min_value": "0.1",
"max_value_warning": "100",
"enabled": "adhesion_type == \"raft\"",
"inherit_function": "parent_value"
"inherit_function": "parent_value",
"global_only": "True",
"visible": false
},
"raft_interface_speed": {
"label": "Raft Interface Print Speed",
@ -1738,7 +1818,9 @@
"min_value": "0.1",
"max_value_warning": "150",
"enabled": "adhesion_type == \"raft\"",
"inherit_function": "0.5 * parent_value"
"inherit_function": "0.5 * parent_value",
"global_only": "True",
"visible": false
},
"raft_base_speed": {
"label": "Raft Base Print Speed",
@ -1749,7 +1831,9 @@
"min_value": "0.1",
"max_value_warning": "200",
"enabled": "adhesion_type == \"raft\"",
"inherit_function": "0.5 * parent_value"
"inherit_function": "0.5 * parent_value",
"global_only": "True",
"visible": false
}
}
},
@ -1761,6 +1845,7 @@
"min_value": "0",
"max_value": "100",
"default": 100,
"global_only": "True",
"visible": false,
"enabled": "adhesion_type == \"raft\"",
"children": {
@ -1772,6 +1857,7 @@
"min_value": "0",
"max_value": "100",
"default": 100,
"global_only": "True",
"visible": false,
"inherit": true,
"enabled": "adhesion_type == \"raft\""
@ -1784,6 +1870,7 @@
"min_value": "0",
"max_value": "100",
"default": 100,
"global_only": "True",
"visible": false,
"inherit": true,
"enabled": "adhesion_type == \"raft\""
@ -1796,6 +1883,7 @@
"min_value": "0",
"max_value": "100",
"default": 100,
"global_only": "True",
"visible": false,
"inherit": true,
"enabled": "adhesion_type == \"raft\""
@ -1865,7 +1953,7 @@
"surface": "Surface",
"both": "Both"
},
"default": "Normal",
"default": "normal",
"visible": false
},
"magic_spiralize": {
@ -1874,7 +1962,7 @@
"type": "boolean",
"default": false,
"visible": false,
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True"
},
"magic_fuzzy_skin_enabled": {
"label": "Fuzzy Skin",
@ -1926,7 +2014,7 @@
"type": "boolean",
"default": false,
"visible": false,
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True"
},
"wireframe_height": {
"label": "WP Connection Height",
@ -1938,7 +2026,7 @@
"max_value_warning": "20",
"visible": false,
"enabled": "wireframe_enabled",
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True"
},
"wireframe_roof_inset": {
"label": "WP Roof Inset Distance",
@ -1952,7 +2040,7 @@
"visible": false,
"enabled": "wireframe_enabled",
"inherit_function": "wireframe_height",
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True"
},
"wireframe_printspeed": {
"label": "WP speed",
@ -1964,7 +2052,7 @@
"max_value_warning": "50",
"visible": false,
"enabled": "wireframe_enabled",
"global_only": "print_sequence != \"one_at_a_time\"",
"global_only": "True",
"children": {
"wireframe_printspeed_bottom": {
"label": "WP Bottom Printing Speed",
@ -1977,7 +2065,7 @@
"visible": false,
"inherit": true,
"enabled": "wireframe_enabled",
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True"
},
"wireframe_printspeed_up": {
"label": "WP Upward Printing Speed",
@ -1990,7 +2078,7 @@
"visible": false,
"inherit": true,
"enabled": "wireframe_enabled",
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True"
},
"wireframe_printspeed_down": {
"label": "WP Downward Printing Speed",
@ -2003,7 +2091,7 @@
"visible": false,
"inherit": true,
"enabled": "wireframe_enabled",
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True"
},
"wireframe_printspeed_flat": {
"label": "WP Horizontal Printing Speed",
@ -2016,7 +2104,7 @@
"visible": false,
"inherit": true,
"enabled": "wireframe_enabled",
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True"
}
}
},
@ -2030,7 +2118,7 @@
"type": "float",
"visible": false,
"enabled": "wireframe_enabled",
"global_only": "print_sequence != \"one_at_a_time\"",
"global_only": "True",
"children": {
"wireframe_flow_connection": {
"label": "WP Connection Flow",
@ -2042,7 +2130,7 @@
"type": "float",
"visible": false,
"enabled": "wireframe_enabled",
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True"
},
"wireframe_flow_flat": {
"label": "WP Flat Flow",
@ -2054,7 +2142,7 @@
"type": "float",
"visible": false,
"enabled": "wireframe_enabled",
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True"
}
}
},
@ -2068,7 +2156,7 @@
"max_value_warning": "1",
"visible": false,
"enabled": "wireframe_enabled",
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True"
},
"wireframe_bottom_delay": {
"label": "WP Bottom Delay",
@ -2080,7 +2168,7 @@
"max_value_warning": "1",
"visible": false,
"enabled": "wireframe_enabled",
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True"
},
"wireframe_flat_delay": {
"label": "WP Flat Delay",
@ -2092,7 +2180,7 @@
"max_value_warning": "0.5",
"visible": false,
"enabled": "wireframe_enabled",
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True"
},
"wireframe_up_half_speed": {
"label": "WP Ease Upward",
@ -2104,7 +2192,7 @@
"max_value_warning": "5.0",
"visible": false,
"enabled": "wireframe_enabled",
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True"
},
"wireframe_top_jump": {
"label": "WP Knot Size",
@ -2116,7 +2204,7 @@
"max_value_warning": "2.0",
"visible": false,
"enabled": "wireframe_enabled",
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True"
},
"wireframe_fall_down": {
"label": "WP Fall Down",
@ -2128,7 +2216,7 @@
"max_value_warning": "wireframe_height",
"visible": false,
"enabled": "wireframe_enabled",
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True"
},
"wireframe_drag_along": {
"label": "WP Drag along",
@ -2140,7 +2228,7 @@
"max_value_warning": "wireframe_height",
"visible": false,
"enabled": "wireframe_enabled",
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True"
},
"wireframe_strategy": {
"label": "WP Strategy",
@ -2154,7 +2242,7 @@
"default": "compensate",
"visible": false,
"enabled": "wireframe_enabled",
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True"
},
"wireframe_straight_before_down": {
"label": "WP Straighten Downward Lines",
@ -2166,7 +2254,7 @@
"max_value": "100",
"visible": false,
"enabled": "wireframe_enabled",
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True"
},
"wireframe_roof_fall_down": {
"label": "WP Roof Fall Down",
@ -2178,7 +2266,7 @@
"max_value_warning": "wireframe_roof_inset",
"visible": false,
"enabled": "wireframe_enabled",
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True"
},
"wireframe_roof_drag_along": {
"label": "WP Roof Drag Along",
@ -2190,7 +2278,7 @@
"max_value_warning": "10",
"visible": false,
"enabled": "wireframe_enabled",
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True"
},
"wireframe_roof_outer_delay": {
"label": "WP Roof Outer Delay",
@ -2202,7 +2290,7 @@
"max_value_warning": "2.0",
"visible": false,
"enabled": "wireframe_enabled",
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True"
},
"wireframe_nozzle_clearance": {
"label": "WP Nozzle Clearance",
@ -2214,7 +2302,7 @@
"max_value_warning": "10.0",
"visible": false,
"enabled": "wireframe_enabled",
"global_only": "print_sequence != \"one_at_a_time\""
"global_only": "True"
}
}
}