From 12b3d458f28c2d9d7af25650f04d2a379bbbf604 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Tue, 13 Oct 2009 17:15:12 +0000 Subject: [PATCH] Bugfixes for particle mode: * Fix crash removing all particles. * Brush added particles did not get correct coordinates. --- source/blender/editors/physics/particle_edit.c | 3 +++ source/blender/editors/space_view3d/drawobject.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/source/blender/editors/physics/particle_edit.c b/source/blender/editors/physics/particle_edit.c index d4a180e2427..74ed6451d29 100644 --- a/source/blender/editors/physics/particle_edit.c +++ b/source/blender/editors/physics/particle_edit.c @@ -3003,6 +3003,9 @@ static void brush_add(PEData *data, short number) for(k=0, hkey=pa->hair; ktotkey; k++, hkey++, key++) { key->co= hkey->co; key->time= &hkey->time; + + if(!(psys->flag & PSYS_GLOBAL_HAIR)) + key->flag |= PEK_USE_WCO; } pa->size= 1.0f; diff --git a/source/blender/editors/space_view3d/drawobject.c b/source/blender/editors/space_view3d/drawobject.c index 096129f6f9e..78dd53e7271 100644 --- a/source/blender/editors/space_view3d/drawobject.c +++ b/source/blender/editors/space_view3d/drawobject.c @@ -4237,7 +4237,7 @@ static void draw_ptcache_edit(Scene *scene, View3D *v3d, RegionView3D *rv3d, Obj if(!(point->flag & PEP_HIDE)) totkeys += point->totkey; - if(!(edit->points->keys->flag & PEK_USE_WCO)) + if(edit->points && !(edit->points->keys->flag & PEK_USE_WCO)) pd=pdata=MEM_callocN(totkeys*3*sizeof(float), "particle edit point data"); cd=cdata=MEM_callocN(totkeys*(timed?4:3)*sizeof(float), "particle edit color data");