[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [11727] trunk/blender/source/blender/src/ buttons_object.c: * Updated the max particle amount to 1 million.

Matt Ebb matt at mke3.net
Mon Aug 20 05:03:35 CEST 2007


Revision: 11727
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=11727
Author:   broken
Date:     2007-08-20 05:03:34 +0200 (Mon, 20 Aug 2007)

Log Message:
-----------
* Updated the max particle amount to 1 million. I've been using it 
here for a while and it's been fine - I'm pretty sure it's safe, as
long as you've got enough RAM :)

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	2007-08-20 01:32:15 UTC (rev 11726)
+++ trunk/blender/source/blender/src/buttons_object.c	2007-08-20 03:03:34 UTC (rev 11727)
@@ -3089,7 +3089,7 @@
 	
 	uiDefBut(block, LABEL, 0, "Emit:",					0,150,75,20, NULL, 0.0, 0, 0, 0, "");
 	uiBlockBeginAlign(block);
-	uiDefButI(block, NUM, B_CALCEFFECT, "Amount:",		0,130,150,20, &paf->totpart, 1.0, 100000.0, 0, 0, "The total number of particles");
+	uiDefButI(block, NUM, B_CALCEFFECT, "Amount:",		0,130,150,20, &paf->totpart, 1.0, 1000000.0, 0, 0, "The total number of particles");
 	if(paf->flag & PAF_STATIC) {
 		uiDefButS(block, NUM, REDRAWVIEW3D, "Step:",	0,110,150,20, &paf->staticstep, 1.0, 100.0, 10, 0, "For static duplicators, the Step value skips particles");
 	}





More information about the Bf-blender-cvs mailing list