[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [51121] trunk/blender/source/blender/ makesrna/intern/rna_modifier.c: Increase maximum octree depth to 12

Nicholas Bishop nicholasbishop at gmail.com
Sat Oct 6 19:51:53 CEST 2012


Revision: 51121
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=51121
Author:   nicholasbishop
Date:     2012-10-06 17:51:52 +0000 (Sat, 06 Oct 2012)
Log Message:
-----------
Increase maximum octree depth to 12

Note that this is just an RNA change, underlying dualcon octree
already supports even higher values.

Modified Paths:
--------------
    trunk/blender/source/blender/makesrna/intern/rna_modifier.c

Modified: trunk/blender/source/blender/makesrna/intern/rna_modifier.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_modifier.c	2012-10-06 17:11:53 UTC (rev 51120)
+++ trunk/blender/source/blender/makesrna/intern/rna_modifier.c	2012-10-06 17:51:52 UTC (rev 51121)
@@ -3007,7 +3007,7 @@
 
 	prop = RNA_def_property(srna, "octree_depth", PROP_INT, PROP_NONE);
 	RNA_def_property_int_sdna(prop, NULL, "depth");
-	RNA_def_property_range(prop, 1, 10);
+	RNA_def_property_range(prop, 1, 12);
 	RNA_def_property_ui_text(prop, "Octree Depth", "Resolution of the octree; higher values give finer details");
 	RNA_def_property_update(prop, 0, "rna_Modifier_update");
 




More information about the Bf-blender-cvs mailing list