From 56422ff6c3f333a454402b0076948f1d5f7e739c Mon Sep 17 00:00:00 2001 From: Luca Rood Date: Mon, 3 Jul 2017 18:00:13 +0200 Subject: Fix T51523: Lattice modifier affecting particles even when disabled Particles were ignoring the lattice modifier visibility, and "influence" property. --- source/blender/makesdna/DNA_particle_types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/makesdna') diff --git a/source/blender/makesdna/DNA_particle_types.h b/source/blender/makesdna/DNA_particle_types.h index 1deb9bf3787..f6bed37dfa2 100644 --- a/source/blender/makesdna/DNA_particle_types.h +++ b/source/blender/makesdna/DNA_particle_types.h @@ -323,7 +323,7 @@ typedef struct ParticleSystem { struct ParticleDrawData *pdd; float dt_frac; /* current time step, as a fraction of a frame */ - float _pad; /* spare capacity */ + float lattice_strength; /* influence of the lattice modifier */ } ParticleSystem; typedef enum eParticleDrawFlag { -- cgit v1.2.3