[Bf-blender-cvs] [1877525] GPencil_Editing_Stage3: GP Sculpt: Dampen down the timer speed on the Thickness brush to be more manageable

Joshua Leung noreply at git.blender.org
Sat Sep 19 16:05:50 CEST 2015


Commit: 1877525960b7c7078deb1be6c6390cfca311b701
Author: Joshua Leung
Date:   Sun Sep 20 02:03:13 2015 +1200
Branches: GPencil_Editing_Stage3
https://developer.blender.org/rB1877525960b7c7078deb1be6c6390cfca311b701

GP Sculpt: Dampen down the timer speed on the Thickness brush to be more manageable

===================================================================

M	source/blender/editors/gpencil/gpencil_brush.c

===================================================================

diff --git a/source/blender/editors/gpencil/gpencil_brush.c b/source/blender/editors/gpencil/gpencil_brush.c
index 1cf677c..ddbd26e 100644
--- a/source/blender/editors/gpencil/gpencil_brush.c
+++ b/source/blender/editors/gpencil/gpencil_brush.c
@@ -1235,7 +1235,7 @@ static int gpsculpt_brush_invoke(bContext *C, wmOperator *op, const wmEvent *eve
 		
 		/* Brushes requiring timer... */
 		case GP_EDITBRUSH_TYPE_THICKNESS:
-			brush_rate = 0.001f; // XXX: hardcoded
+			brush_rate = 0.01f; // XXX: hardcoded
 			needs_timer = true;
 			break;




More information about the Bf-blender-cvs mailing list