From c2d363b11804ea2a0ce9e31a120a8a2b73af7a4a Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Wed, 8 Aug 2018 20:07:12 +0200 Subject: Fix T55818: Dynamically modified influence vertex group not working in modifier stack. Now that we are using meshes, we need to assign back potential new vgroup cdlayer to mesh->dvert pointer... --- source/blender/modifiers/intern/MOD_weightvgedit.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source/blender/modifiers/intern/MOD_weightvgedit.c') diff --git a/source/blender/modifiers/intern/MOD_weightvgedit.c b/source/blender/modifiers/intern/MOD_weightvgedit.c index 356edcd7bec..74b1f600242 100644 --- a/source/blender/modifiers/intern/MOD_weightvgedit.c +++ b/source/blender/modifiers/intern/MOD_weightvgedit.c @@ -219,6 +219,7 @@ static Mesh *applyModifier( } return mesh; } + result->dvert = dvert; /* Get org weights, assuming 0.0 for vertices not in given vgroup. */ org_w = MEM_malloc_arrayN(numVerts, sizeof(float), "WeightVGEdit Modifier, org_w"); -- cgit v1.2.3