Revision: 43745
          
http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=43745
Author:   miikah
Date:     2012-01-27 17:44:56 +0000 (Fri, 27 Jan 2012)
Log Message:
-----------
Dynamic Paint:
* Fix: Brush didn't paint particles that were hidden by the display percentage 
setting.

Modified Paths:
--------------
    trunk/blender/source/blender/blenkernel/intern/dynamicpaint.c

Modified: trunk/blender/source/blender/blenkernel/intern/dynamicpaint.c
===================================================================
--- trunk/blender/source/blender/blenkernel/intern/dynamicpaint.c       
2012-01-27 14:17:59 UTC (rev 43744)
+++ trunk/blender/source/blender/blenkernel/intern/dynamicpaint.c       
2012-01-27 17:44:56 UTC (rev 43745)
@@ -3552,7 +3552,7 @@
                /* Proceed only if particle is active   */
                if(pa->alive == PARS_UNBORN && (part->flag & PART_UNBORN)==0) 
continue;                                                                 
                else if(pa->alive == PARS_DEAD && (part->flag & PART_DIED)==0) 
continue;                                                                       
 
-               else if(pa->flag & PARS_NO_DISP || pa->flag & PARS_UNEXIST) 
continue;
+               else if(pa->flag & PARS_UNEXIST) continue;
 
                /*      for debug purposes check if any NAN particle proceeds
                *       For some reason they get past activity check, this 
should rule most of them out */

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to