mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-10 07:15:03 -06:00
Use resolveOrValue
This commit is contained in:
parent
83117e5985
commit
12c53ce4e4
3 changed files with 3 additions and 3 deletions
|
@ -138,6 +138,6 @@
|
|||
"z_seam_corner": { "default_value": "z_seam_corner_weighted" },
|
||||
"z_seam_position": { "default_value": "left" },
|
||||
"z_seam_type": { "default_value": "back" },
|
||||
"zig_zaggify_infill": { "value": "infill_pattern == 'cross' or infill_pattern == 'cross_3d' or infill_sparse_density < 30 " }
|
||||
"zig_zaggify_infill": { "value": "resolveOrValue('infill_pattern') == 'cross' or resolveOrValue('infill_pattern') == 'cross_3d' or resolveOrValue('infill_sparse_density') < 30 " }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -12,7 +12,7 @@ variant = 0.20mm_Elegoo_Nozzle
|
|||
|
||||
[values]
|
||||
brim_width = 8
|
||||
infill_overlap = =0 if infill_sparse_density > 80 else 10
|
||||
infill_overlap = =0 if resolveOrValue('infill_sparse_density') > 80 else 10
|
||||
infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid'
|
||||
machine_nozzle_cool_down_speed = 0.9
|
||||
machine_nozzle_heat_up_speed = 1.4
|
||||
|
|
|
@ -12,7 +12,7 @@ variant = 0.20mm_Elegoo_Nozzle
|
|||
|
||||
[values]
|
||||
brim_width = 8
|
||||
infill_overlap = =0 if infill_sparse_density > 80 else 10
|
||||
infill_overlap = =0 if resolveOrValue('infill_sparse_density') > 80 else 10
|
||||
infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid'
|
||||
machine_nozzle_cool_down_speed = 0.9
|
||||
machine_nozzle_heat_up_speed = 1.4
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue