Fixed inheritance issues

This commit is contained in:
Tom Heijmans 2016-04-15 14:36:13 +02:00
parent 00305f1c53
commit 7ce5c6c6bc
5 changed files with 13 additions and 16 deletions

View file

@ -12,10 +12,9 @@
"variant": "0.25 mm",
"overrides": {
"speed_wall": { "inherit_function": "round(speed_print / 1.2, 0)" },
"speed_wall_x": { "inherit_function": "speed_wall" },
"speed_wall_0": { "inherit_function": "speed_wall - 5" },
"speed_topbottom": { "inherit_function": "round(speed_print / 1.5, 0)" },
"speed_wall": { "inherit_function": "round(speed_print / 1.2, 1)" },
"speed_wall_0": { "inherit_function": "1 if speed_wall < 5 else (speed_wall - 5)" },
"speed_topbottom": { "inherit_function": "round(speed_print / 1.5, 1)" },
"machine_nozzle_size": { "default": 0.25 },
"machine_nozzle_tip_outer_diameter": { "default": 0.8 },
"coasting_volume": { "default": 0.1 },