Commit: 29e5c330cff8b7c68317b91502e29058b4f670fb
Author: YimingWu
Date:   Fri Nov 5 20:02:35 2021 +0800
Branches: blender-v3.0-release
https://developer.blender.org/rB29e5c330cff8b7c68317b91502e29058b4f670fb

GPencil: Fix dash modifier missing vertex color.

The original code did not copy vertex color to the generated stroke,
now fixed.

===================================================================

M       source/blender/gpencil_modifiers/intern/MOD_gpencildash.c

===================================================================

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);

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
List details, subscription details or unsubscribe:
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to