[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [29190] branches/branch-farsthary/source/ blender: Better defaults

Raul Fernandez Hernandez farsthary at gmail.com
Thu Jun 3 19:29:07 CEST 2010


Revision: 29190
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=29190
Author:   farsthary
Date:     2010-06-03 19:29:06 +0200 (Thu, 03 Jun 2010)

Log Message:
-----------
Better defaults

Modified Paths:
--------------
    branches/branch-farsthary/source/blender/blenkernel/intern/brush.c
    branches/branch-farsthary/source/blender/blenloader/intern/readfile.c

Modified: branches/branch-farsthary/source/blender/blenkernel/intern/brush.c
===================================================================
--- branches/branch-farsthary/source/blender/blenkernel/intern/brush.c	2010-06-03 17:23:36 UTC (rev 29189)
+++ branches/branch-farsthary/source/blender/blenkernel/intern/brush.c	2010-06-03 17:29:06 UTC (rev 29190)
@@ -84,7 +84,7 @@
 	brush->sculpt_tool = SCULPT_TOOL_DRAW;
 	brush->flag |= BRUSH_SPACE;
 	brush->detail = 0.25f;
-	brush->smoothness = 0.5f;
+	brush->smoothness = 0.25f;
 
 	brush_curve_preset(brush, CURVE_PRESET_SMOOTH);
 	

Modified: branches/branch-farsthary/source/blender/blenloader/intern/readfile.c
===================================================================
--- branches/branch-farsthary/source/blender/blenloader/intern/readfile.c	2010-06-03 17:23:36 UTC (rev 29189)
+++ branches/branch-farsthary/source/blender/blenloader/intern/readfile.c	2010-06-03 17:29:06 UTC (rev 29190)
@@ -10774,9 +10774,9 @@
 	Brush *brush;
 	for (brush= main->brush.first; brush; brush= brush->id.next){
 		if(brush->detail == 0.0f)
-			brush->detail = 0.3f;
+			brush->detail = 0.25f;
 		if (brush->smoothness == 0.0f)
-			brush->smoothness = 0.5f;
+			brush->smoothness = 0.25f;
 	
 	}
 		





More information about the Bf-blender-cvs mailing list