[Bf-committers] [Bf-blender-cvs] SVN commit: /data/svn/bf-blender [13649] trunk/blender/source/blender/ blenkernel/intern/particle.c: Fix for bug #8245.

Janne Karhu jhkarh at utu.fi
Tue Feb 12 11:09:15 CET 2008


Ah, sure thing! Although it's little use here I'll give a short recap of  
the fixes here:

[#7857] Particles: Velocity vertex group doesn't update particles (weight  
paint too)
	-Proper update calls to particles was missing in the vertex group buttons  
(particle extras panel) and the weight painting call

[#8186] SVN: Particles spawn at origin
	-On some cases particle coordinates were converted to deflector object  
space in the deflection code, but never converted back to global space for  
further collision testing

[#8245] Lattices dont control particles anymore
	-A not operator in the wrong place (!foo(...)==0) totally disabled  
particles seeing the lattice modifier after particles.


I'll add these kinds of explanations to the commit messages in the future,  
thanks for the tip!

Janne


On Tue, 12 Feb 2008 03:00:59 +0200, Matt Ebb <matt at mke3.net> wrote:

> Hi Janne, when you fix bugs from the tracker, would you be able to
> give a short summary of what the bug actually was that you fixed in
> the commit log? Even just the title of the bug report would be fine.
>
> It makes it easier to keep track of what's actually been changed in
> svn, especially too if the bug is closed, it's hard to find the actual
> report.
>
> cheers,
>
> Matt
>
>
> On Feb 12, 2008 11:34 AM, Janne Karhu <jhkarh at utu.fi> wrote:
>> Revision: 13649
>>           http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=13649
>> Author:   jhk
>> Date:     2008-02-12 01:34:53 +0100 (Tue, 12 Feb 2008)
>>
>> Log Message:
>> -----------
>> Fix for bug #8245.
>>
>> Modified Paths:
>> --------------
>>     trunk/blender/source/blender/blenkernel/intern/particle.c
>>
>> Modified: trunk/blender/source/blender/blenkernel/intern/particle.c
>> ===================================================================
>> --- trunk/blender/source/blender/blenkernel/intern/particle.c    
>> 2008-02-11 23:24:16 UTC (rev 13648)
>> +++ trunk/blender/source/blender/blenkernel/intern/particle.c    
>> 2008-02-12 00:34:53 UTC (rev 13649)
>> @@ -204,7 +204,7 @@
>>  {
>>         Object *lattice=0;
>>
>> -       if(!psys_in_edit_mode(psys)==0){
>> +       if(psys_in_edit_mode(psys)==0){
>>
>>                 ModifierData *md =  
>> (ModifierData*)psys_get_modifier(ob,psys);
>>
>>
>>
>> _______________________________________________
>> Bf-blender-cvs mailing list
>> Bf-blender-cvs at blender.org
>> http://lists.blender.org/mailman/listinfo/bf-blender-cvs
>>
> _______________________________________________
> Bf-committers mailing list
> Bf-committers at blender.org
> http://lists.blender.org/mailman/listinfo/bf-committers




More information about the Bf-committers mailing list