Merge branch 'blender-v3.2-release'

This commit is contained in:
Antonio Vazquez 2022-05-27 14:23:00 +02:00
commit 9fef80c663
1 changed files with 1 additions and 0 deletions

View File

@ -320,6 +320,7 @@ static int gpencil_bake_grease_pencil_animation_exec(bContext *C, wmOperator *op
/* Update point location to new object space. */
for (int j = 0; j < gps->totpoints; j++) {
bGPDspoint *pt = &gps->points[j];
mul_m4_v3(ob_eval->obmat, &pt->x);
mul_m4_v3(invmat, &pt->x);
}