mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-05 21:13:58 -06:00
Disable 'Alternate Mesh Removal' and 'Remove Mesh Intersection' if Surface Model == 'Surface'
CURA-5580
This commit is contained in:
parent
f90f5f5180
commit
3848ec66bd
1 changed files with 2 additions and 1 deletions
|
@ -5173,6 +5173,7 @@
|
|||
"type": "bool",
|
||||
"default_value": true,
|
||||
"value": "extruders_enabled_count > 1",
|
||||
"enabled": "all(p != 'surface' for p in extruderValues('magic_mesh_surface_mode'))",
|
||||
"settable_per_mesh": false,
|
||||
"settable_per_extruder": false,
|
||||
"settable_per_meshgroup": true
|
||||
|
@ -5183,7 +5184,7 @@
|
|||
"description": "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes.",
|
||||
"type": "bool",
|
||||
"default_value": true,
|
||||
"enabled": "carve_multiple_volumes",
|
||||
"enabled": "carve_multiple_volumes and all(p != 'surface' for p in extruderValues('magic_mesh_surface_mode'))",
|
||||
"settable_per_mesh": false,
|
||||
"settable_per_extruder": false,
|
||||
"settable_per_meshgroup": true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue