From 0666de06f3119ff1640f1eb66833cd4feb669209 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20T=C3=B6nne?= Date: Thu, 15 Jan 2015 18:15:52 +0100 Subject: Fix for particle system copy: This has to make sure the ORIGSPACE data layer is available. Otherwise particle mapping to the new mesh cannot work with subdivided and constructively-modified meshes. --- source/blender/blenkernel/BKE_particle.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source/blender/blenkernel/BKE_particle.h') diff --git a/source/blender/blenkernel/BKE_particle.h b/source/blender/blenkernel/BKE_particle.h index bdf3a36370e..a5f12bb9a3c 100644 --- a/source/blender/blenkernel/BKE_particle.h +++ b/source/blender/blenkernel/BKE_particle.h @@ -39,6 +39,8 @@ #include "DNA_particle_types.h" #include "DNA_object_types.h" +#include "BKE_customdata.h" + struct ParticleSystemModifierData; struct ParticleSystem; struct ParticleKey; @@ -312,6 +314,7 @@ void psys_interpolate_mcol(const struct MCol *mcol, int quad, const float w[4], void copy_particle_key(struct ParticleKey *to, struct ParticleKey *from, int time); +CustomDataMask psys_emitter_customdata_mask(struct ParticleSystem *psys); void psys_particle_on_emitter(struct ParticleSystemModifierData *psmd, int distr, int index, int index_dmcache, float fuv[4], float foffset, float vec[3], float nor[3], float utan[3], float vtan[3], float orco[3], float ornor[3]); -- cgit v1.2.3