Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Wilkins <Jason.A.Wilkins@gmail.com>2010-07-21 04:57:25 +0400
committerJason Wilkins <Jason.A.Wilkins@gmail.com>2010-07-21 04:57:25 +0400
commit015ecdee2965ba872162514a94ea7b7751ecbe1a (patch)
tree0655757b492b857e39105d736453a924f994d9b2 /source/blender/makesrna/intern/rna_brush.c
parentb21092d6ad7e859d2576275a37deb17b2d4a6698 (diff)
* Polish preset did not enable tablet pressure for strength
* Turned off 'Front-Face Only' for all brushes, it needs more testing * Added brush icons for other paint modes * Moved 'tool' panel to bottom of all paint modes * Moved 'appearance' panel to be next to bottom * Moved brush selector panel to top of all modes * Closed all panels except the brush selector panel * Turned off X symmetry
Diffstat (limited to 'source/blender/makesrna/intern/rna_brush.c')
-rw-r--r--source/blender/makesrna/intern/rna_brush.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_brush.c b/source/blender/makesrna/intern/rna_brush.c
index c6f77c9fce2..491819441e2 100644
--- a/source/blender/makesrna/intern/rna_brush.c
+++ b/source/blender/makesrna/intern/rna_brush.c
@@ -265,7 +265,7 @@ static void rna_def_brush(BlenderRNA *brna)
{BRUSH_ICON_BLOB, "BLOB", 0, "Blob", ""},
{BRUSH_ICON_CREASE, "CREASE", 0, "Crease", ""},
{BRUSH_ICON_CLAY, "CLAY", 0, "Clay", ""},
- {BRUSH_ICON_DRAW, "DRAW", 0, "Draw", ""},
+ {BRUSH_ICON_SCULPTDRAW, "SCULPTDRAW", 0, "Sculpt Draw", ""},
{BRUSH_ICON_FILL, "FILL", 0, "Fill", ""},
{BRUSH_ICON_FLATTEN, "FLATTEN", 0, "Flatten", ""},
{BRUSH_ICON_GRAB, "GRAB", 0, "Grab", ""},
@@ -278,6 +278,18 @@ static void rna_def_brush(BlenderRNA *brna)
{BRUSH_ICON_SMOOTH, "SMOOTH", 0, "Smooth", ""},
{BRUSH_ICON_SNAKE_HOOK, "SNAKE_HOOK", 0, "Snake Hook", ""},
{BRUSH_ICON_THUMB, "THUMB", 0, "Thumb", ""},
+ {BRUSH_ICON_ADD, "ADD", 0, "Add", ""},
+ {BRUSH_ICON_BLUR, "BLUR", 0, "Blur", ""},
+ {BRUSH_ICON_CLONE, "CLONE", 0, "Clone", ""},
+ {BRUSH_ICON_DARKEN, "DARKEN", 0, "Darken", ""},
+ {BRUSH_ICON_LIGHTEN, "LIGHTEN", 0, "Lighten", ""},
+ {BRUSH_ICON_MIX, "MIX", 0, "Mix", ""},
+ {BRUSH_ICON_MULTIPLY, "MULTIPLY", 0, "Multiply", ""},
+ {BRUSH_ICON_SMEAR, "SMEAR", 0, "Smear", ""},
+ {BRUSH_ICON_SOFTEN, "SOFTEN", 0, "Soften", ""},
+ {BRUSH_ICON_SUBTRACT, "SUBTRACT", 0, "Subtract", ""},
+ {BRUSH_ICON_TEXDRAW, "TEXDRAW", 0, "Texture Draw", ""},
+ {BRUSH_ICON_VERTEXDRAW, "VERTEXDRAW", 0, "Vertex Draw", ""},
{0, NULL, 0, NULL, NULL}};
FunctionRNA *func;