Page Menu
Home
Search
Configure Global Search
Log In
Paste
P1088
T68732 snippet
Active
Public
Actions
Authored by
Philipp Oeser (lichtwerk)
on Aug 28 2019, 10:03 PM.
Edit Paste
Archive Paste
View Raw File
Subscribe
Mute Notifications
Award Token
Tags
None
Subscribers
None
diff --git a/source/blender/modifiers/intern/MOD_boolean.c b/source/blender/modifiers/intern/MOD_boolean.c
index ea42ddb03f4..53f112c3f78 100644
--- a/source/blender/modifiers/intern/MOD_boolean.c
+++ b/source/blender/modifiers/intern/MOD_boolean.c
@@ -189,7 +189,7 @@ static Mesh *applyModifier(ModifierData *md, const ModifierEvalContext *ctx, Mes
}));
BM_mesh_bm_from_me(bm,
- mesh_other,
+ mesh,
&((struct BMeshFromMeshParams){
.calc_face_normal = true,
}));
@@ -204,7 +204,7 @@ static Mesh *applyModifier(ModifierData *md, const ModifierEvalContext *ctx, Mes
}
BM_mesh_bm_from_me(bm,
- mesh,
+ mesh_other,
&((struct BMeshFromMeshParams){
.calc_face_normal = true,
}));
Event Timeline
Philipp Oeser (lichtwerk)
created this paste.
Aug 28 2019, 10:03 PM
Philipp Oeser (lichtwerk)
mentioned this in
T68732: Boolean merges CustomData inconsistently (UVs, VCols), breaks UV Map Node
.
Aug 28 2019, 10:12 PM
Log In to Comment