mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-23 22:54:01 -06:00
No longer create convex hulls for modifier meshes
CURA-6030
This commit is contained in:
parent
1c9eab6b2b
commit
8b73f7cef9
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ class PlatformPhysics:
|
|||
move_vector = move_vector.set(y = -bbox.bottom + z_offset)
|
||||
|
||||
# If there is no convex hull for the node, start calculating it and continue.
|
||||
if not node.getDecorator(ConvexHullDecorator):
|
||||
if not node.getDecorator(ConvexHullDecorator) and not node.callDecoration("isNonPrintingMesh"):
|
||||
node.addDecorator(ConvexHullDecorator())
|
||||
|
||||
# only push away objects if this node is a printing mesh
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue