From 34058c4ff1684b4d2e4d8619e2a7b690d9286140 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Mon, 12 Nov 2018 16:24:53 +0100 Subject: Fix T57105: Baked Particles could not be rendered as expected Same fix as for smoke (and is what caching proposal is AFAIK): share cache between copied and original objects. One thing which is still missing to be fixed is to make auto-cache more reliable. It was already kind of broken, so don't think it should be a stopping factor for this fix. --- source/blender/makesdna/DNA_particle_types.h | 1 + 1 file changed, 1 insertion(+) (limited to 'source/blender/makesdna/DNA_particle_types.h') diff --git a/source/blender/makesdna/DNA_particle_types.h b/source/blender/makesdna/DNA_particle_types.h index 037e9b9c499..ebccb36a671 100644 --- a/source/blender/makesdna/DNA_particle_types.h +++ b/source/blender/makesdna/DNA_particle_types.h @@ -567,6 +567,7 @@ typedef enum eParticleShapeFlag { //#define PSYS_PROTECT_CACHE 4096 /* deprecated */ #define PSYS_DISABLED 8192 #define PSYS_OB_ANIM_RESTORE 16384 /* runtime flag */ +#define PSYS_SHARED_CACHES 32768 /* pars->flag */ #define PARS_UNEXIST 1 -- cgit v1.2.3