Skip to content

Commit

Permalink
Fix formula syntax (and simplify it)
Browse files Browse the repository at this point in the history
  • Loading branch information
wawanbreton committed Jul 11, 2024
1 parent 2fa019f commit 6627881
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/definitions/ultimaker_method_base.def.json
Original file line number Diff line number Diff line change
Expand Up @@ -393,15 +393,15 @@
"speed_wall_x": { "value": "speed_wall" },
"support_angle": { "value": 40 },
"support_bottom_distance": { "value": "layer_height if extruder_nr == support_extruder_nr else support_z_distance" },
"support_bottom_enable": { "value": "false if extruder_nr == support_extruder_nr else true" },
"support_bottom_enable": { "value": "extruder_nr != support_extruder_nr" },
"support_bottom_height": { "value": "2*support_infill_sparse_thickness" },
"support_bottom_material_flow": { "value": "material_flow" },
"support_bottom_wall_count": { "value": "0 if extruder_nr == support_extruder_nr else support_wall_count" },
"support_brim_enable": { "value": false },
"support_conical_min_width": { "value": 10 },
"support_enable": { "value": true },
"support_extruder_nr": { "value": "int(anyExtruderWithMaterial('material_is_support_material'))" },
"support_fan_enable": { "value": "true if extruder_nr == support_extruder_nr else false" },
"support_fan_enable": { "value": "extruder_nr == support_extruder_nr" },
"support_infill_rate": { "value": 20.0 },
"support_infill_sparse_thickness": { "value": "layer_height" },
"support_interface_enable": { "value": true },
Expand Down

0 comments on commit 6627881

Please sign in to comment.