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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Inch <mythologylover75@gmail.com>2019-10-26 08:01:21 +0300
committerRyan Inch <mythologylover75@gmail.com>2019-10-26 08:01:21 +0300
commit8ddb4baae18b309971c33a25336c34749fd9a3ea (patch)
tree49aecd8a2b168ed1dce60135f9571d03ec6d75fc /space_view3d_brush_menus
parent742b8663af7ca79808d672310f4d6f2730946230 (diff)
Dynamic Brush Menus: Add icons for new sculpt brushes.
Diffstat (limited to 'space_view3d_brush_menus')
-rw-r--r--space_view3d_brush_menus/__init__.py2
-rw-r--r--space_view3d_brush_menus/brushes.py3
2 files changed, 4 insertions, 1 deletions
diff --git a/space_view3d_brush_menus/__init__.py b/space_view3d_brush_menus/__init__.py
index 5b1245e5..1567b309 100644
--- a/space_view3d_brush_menus/__init__.py
+++ b/space_view3d_brush_menus/__init__.py
@@ -23,7 +23,7 @@ bl_info = {
"name": "Dynamic Brush Menus",
"description": "Fast access to brushes & tools in Sculpt and Paint Modes",
"author": "Ryan Inch (Imaginer)",
- "version": (1, 1, 7),
+ "version": (1, 1, 8),
"blender": (2, 80, 0),
"location": "Spacebar in Sculpt/Paint Modes",
"warning": '',
diff --git a/space_view3d_brush_menus/brushes.py b/space_view3d_brush_menus/brushes.py
index 3478d575..4d99b7d5 100644
--- a/space_view3d_brush_menus/brushes.py
+++ b/space_view3d_brush_menus/brushes.py
@@ -36,6 +36,8 @@ brush_icon = {
"CLAY_STRIPS": 'BRUSH_CLAY_STRIPS',
"CREASE": 'BRUSH_CREASE',
"DRAW": 'BRUSH_SCULPT_DRAW',
+ "DRAW_SHARP": 'BRUSH_SCULPT_DRAW',
+ "ELASTIC_DEFORM": 'BRUSH_GRAB',
"FILL": 'BRUSH_FILL',
"FLATTEN": 'BRUSH_FLATTEN',
"GRAB": 'BRUSH_GRAB',
@@ -44,6 +46,7 @@ brush_icon = {
"MASK": 'BRUSH_MASK',
"NUDGE": 'BRUSH_NUDGE',
"PINCH": 'BRUSH_PINCH',
+ "POSE": 'BRUSH_GRAB',
"ROTATE": 'BRUSH_ROTATE',
"SCRAPE": 'BRUSH_SCRAPE',
"SIMPLIFY": 'BRUSH_DATA',