Revision: 19536
          
http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=19536
Author:   jhk
Date:     2009-04-04 16:34:39 +0200 (Sat, 04 Apr 2009)

Log Message:
-----------
Fix for: [#18273] reactor particle spowns to earlier.

Particle life "rand" value could be set above "1.0" allowing for negative 
particle lifetimes.

Modified Paths:
--------------
    trunk/blender/source/blender/src/buttons_object.c

Modified: trunk/blender/source/blender/src/buttons_object.c
===================================================================
--- trunk/blender/source/blender/src/buttons_object.c   2009-04-04 12:48:40 UTC 
(rev 19535)
+++ trunk/blender/source/blender/src/buttons_object.c   2009-04-04 14:34:39 UTC 
(rev 19536)
@@ -4899,7 +4899,7 @@
 
        if(part->type!=PART_HAIR) {
                uiDefButF(block, NUM, B_PART_INIT, "Life:",     
butx,(buty-=buth),butw,buth, &part->lifetime, 1.0, MAXFRAMEF, 100, 1, "Specify 
the life span of the particles");
-               uiDefButF(block, NUM, B_PART_INIT, "Rand:",     
butx,(buty-=buth),butw,buth, &part->randlife, 0.0, 2.0, 10, 1, "Give the 
particle life a random variation");
+               uiDefButF(block, NUM, B_PART_INIT, "Rand:",     
butx,(buty-=buth),butw,buth, &part->randlife, 0.0, 1.0, 10, 1, "Give the 
particle life a random variation");
        }
 
        uiBlockEndAlign(block);


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

Reply via email to