From d7f4fdf845238f551b3c6055aa70926a41d2a7f6 Mon Sep 17 00:00:00 2001 From: YimingWu Date: Fri, 5 Nov 2021 20:02:35 +0800 Subject: GPencil: Fix dash modifier missing vertex color. The original code did not copy vertex color to the generated stroke, now fixed. --- source/blender/gpencil_modifiers/intern/MOD_gpencildash.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source/blender/gpencil_modifiers') diff --git a/source/blender/gpencil_modifiers/intern/MOD_gpencildash.c b/source/blender/gpencil_modifiers/intern/MOD_gpencildash.c index 33cc3094a36..7d2eb4b2c75 100644 --- a/source/blender/gpencil_modifiers/intern/MOD_gpencildash.c +++ b/source/blender/gpencil_modifiers/intern/MOD_gpencildash.c @@ -170,6 +170,7 @@ static bool stroke_dash(const bGPDstroke *gps, stroke->points[is].z = p->z; stroke->points[is].pressure = p->pressure * ds->radius; stroke->points[is].strength = p->strength * ds->opacity; + copy_v4_v4(stroke->points[is].vert_color, p->vert_color); } BLI_addtail(r_strokes, stroke); -- cgit v1.2.3